blob: d4a6ba391d87bf5e1a2a036dae936adc65c229cf (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
import QtQuick 2.5
import QtQuick.Controls 2.14
import "../themes/themes.js" as Theme
import "../themes"
Label {
color: "black"
font {
pixelSize: Theme.fontSize * 1.5
family: boldFont.name
bold: true
}
text: parent.text
Accessible.name: text
Accessible.role: Accessible.StaticText
}
|