center MUTED text in InputLevel

This commit is contained in:
Zach Pomerantz 2017-06-20 16:10:11 -07:00
parent 1f7e1e8287
commit 0075d8619a

View file

@ -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 {