Meshroom/meshroom/ui/qml/ImageGallery/ImageBadge.qml
2024-11-07 18:15:37 +01:00

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
}
}