blob: 05e42e23dc3edd33b98c76b3cfd09a4c80fba4a6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
import QtQuick
import QtQuick.Layouts
RowLayout {
spacing: 0
Text {
text: " Waves:"
color: shellRoot.white
font {
family: shellRoot.fontFamily
pixelSize: shellRoot.fontSize
}
}
Text {
text: volume
color: shellRoot.green
font {
family: shellRoot.fontFamily
pixelSize: shellRoot.fontSize
bold: true
}
}
}
|