Meshroom/meshroom/ui/qml/ImageGallery/ImageBadge.qml
2023-07-03 12:11:29 +02:00

15 lines
297 B
QML

import QtQuick 2.15
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 }
}