Index: sources/gui/qml/dialogs/AlarmDialog.qml =================================================================== diff -u -rfe26c932a53276a569d98cfcfbfc48b8a73af921 -rc1651f840faf3ed767fb19b76742b68401f96272 --- sources/gui/qml/dialogs/AlarmDialog.qml (.../AlarmDialog.qml) (revision fe26c932a53276a569d98cfcfbfc48b8a73af921) +++ sources/gui/qml/dialogs/AlarmDialog.qml (.../AlarmDialog.qml) (revision c1651f840faf3ed767fb19b76742b68401f96272) @@ -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 } }