mirror of
https://github.com/alicevision/Meshroom.git
synced 2025-05-01 19:27:10 +02:00
15 lines
296 B
QML
15 lines
296 B
QML
import QtQuick 2.9
|
|
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 }
|
|
}
|