mirror of
https://github.com/alicevision/Meshroom.git
synced 2025-06-19 03:01:56 +02:00
19 lines
312 B
QML
19 lines
312 B
QML
import QtQuick
|
|
|
|
import MaterialIcons 2.2
|
|
import Utils 1.0
|
|
|
|
/**
|
|
* ImageBadge is a preset MaterialLabel to display an icon bagdge on an image.
|
|
*/
|
|
|
|
MaterialLabel {
|
|
id: root
|
|
|
|
font.pointSize: 10
|
|
padding: 2
|
|
background: Rectangle {
|
|
color: Colors.sysPalette.window
|
|
opacity: 0.6
|
|
}
|
|
}
|