mirror of
https://thingvellir.net/git/overte
synced 2025-03-27 23:52:03 +01:00
center MUTED text in InputLevel
This commit is contained in:
parent
1f7e1e8287
commit
0075d8619a
1 changed files with 5 additions and 2 deletions
|
@ -35,13 +35,16 @@ Rectangle {
|
|||
Text {
|
||||
id: status;
|
||||
|
||||
anchors { verticalCenter: parent.verticalCenter }
|
||||
anchors {
|
||||
horizontalCenter: parent.horizontalCenter;
|
||||
verticalCenter: parent.verticalCenter;
|
||||
}
|
||||
|
||||
visible: Audio.muted;
|
||||
color: colors.muted;
|
||||
|
||||
text: "MUTED";
|
||||
font.pointSize: 12;
|
||||
font.pointSize: 10;
|
||||
}
|
||||
|
||||
Item {
|
||||
|
|
Loading…
Reference in a new issue