Index: sources/gui/qml/dialogs/AlarmDialog.qml =================================================================== diff -u -r0fc32e1796c9fe40ff0e83b4fe039be67ce6dd39 -r5c054a624e9b8523b530691aa07735f34e20e01b --- sources/gui/qml/dialogs/AlarmDialog.qml (.../AlarmDialog.qml) (revision 0fc32e1796c9fe40ff0e83b4fe039be67ce6dd39) +++ sources/gui/qml/dialogs/AlarmDialog.qml (.../AlarmDialog.qml) (revision 5c054a624e9b8523b530691aa07735f34e20e01b) @@ -285,64 +285,69 @@ onPressed : resumeClicked() text.text : qsTr("Resume") width : _buttonGroup.buttonsWidth - isDefault : vSettings.darkMode + isDefault : true backgroundColor: Colors.transparent fgColor : isPressed ? Colors.offWhite : _colorMode.modeAlarmButtonPressedColor selectColor : Qt.darker(borderColor, 1.15) pixelSize : Fonts.fontPixelNotification borderColor : _colorMode.modeAlarmButtonColor + textFont.weight: Font.Medium } TouchRect { id : _temporaryBreak visible : temporaryBreakVisible onPressed : temporaryBreakClicked() text.text : qsTr("Temporary Break") width : _buttonGroup.buttonsWidth - isDefault : vSettings.darkMode + isDefault : true backgroundColor: Colors.transparent fgColor : isPressed ? Colors.offWhite : _colorMode.modeAlarmButtonPressedColor selectColor : Qt.darker(borderColor, 1.15) pixelSize : Fonts.fontPixelNotification borderColor : _colorMode.modeAlarmButtonColor + textFont.weight: Font.Medium } TouchRect { id : _rinsebackTouchRect visible : rinsebackVisible onPressed : rinsebackClicked() text.text : qsTr("Return Blood & End Treatment") width : _buttonGroup.buttonsWidth - isDefault : vSettings.darkMode + isDefault : true backgroundColor: Colors.transparent fgColor : isPressed ? Colors.offWhite : _colorMode.modeAlarmButtonPressedColor selectColor : Qt.darker(borderColor, 1.15) pixelSize : Fonts.fontPixelNotification borderColor : _colorMode.modeAlarmButtonColor + textFont.weight: Font.Medium } TouchRect { id : _endTouchRect visible : endVisible onPressed : endClicked() text.text : qsTr("End Treatment Only") width : _buttonGroup.buttonsWidth - isDefault : vSettings.darkMode + isDefault : true backgroundColor: Colors.transparent fgColor : isPressed ? Colors.offWhite : _colorMode.modeAlarmButtonPressedColor selectColor : Qt.darker(borderColor, 1.15) pixelSize : Fonts.fontPixelNotification borderColor : _colorMode.modeAlarmButtonColor + textFont.weight: Font.Medium } TouchRect { id : _okTouchRect visible : okVisible onPressed : okClicked() text.text : qsTr("OK") width : _buttonGroup.buttonsWidth - isDefault : vSettings.darkMode + isDefault : true backgroundColor: Colors.transparent fgColor : isPressed ? Colors.offWhite : _colorMode.modeAlarmButtonPressedColor selectColor : Qt.darker(borderColor, 1.15) pixelSize : Fonts.fontPixelNotification borderColor : _colorMode.modeAlarmButtonColor + textFont.weight: Font.Medium } }