Index: sources/gui/qml/compounds/InstructionView.qml =================================================================== diff -u -ra9557e00ee75086bc640cb28ab4899ea4affa9ff -r4a2b83dcb56555861d2c741a8e8894e5b07e24bf --- sources/gui/qml/compounds/InstructionView.qml (.../InstructionView.qml) (revision a9557e00ee75086bc640cb28ab4899ea4affa9ff) +++ sources/gui/qml/compounds/InstructionView.qml (.../InstructionView.qml) (revision 4a2b83dcb56555861d2c741a8e8894e5b07e24bf) @@ -26,7 +26,6 @@ property var stepNames : [] property var stepImages : [] property int currentIndex : 0 - readonly property bool isEmpty : stepNames.length == 0 && stepImages.length == 0 color : Colors.offWhite radius : Variables.alarmDialogRadius @@ -57,7 +56,7 @@ anchors.top : parent.top anchors.topMargin : Variables.defaultMargin * 2 spacing : 5 - width : parent.width * 2/3 + width : parent.width / 2 Repeater { id: _instrutionSteps model: _root.stepNames @@ -92,7 +91,7 @@ verticalCenter : parent.verticalCenter } text : _root.stepNames.length ? _root.stepNames[index] : "" - font.weight : index === _root.currentIndex ? Font.DemiBold : Font.Normal + font.weight : index === _root.currentIndex ? Font.Medium : Font.Normal color : index === _root.currentIndex ? "#18559E" : Colors.alarmDialogText wrapMode : Text.WordWrap font.pixelSize : Fonts.fontPixelInstructionStep