From a8adc668e286d1eb7fa3828838e8c880a1c9815c Mon Sep 17 00:00:00 2001 From: Pascal Precht Date: Thu, 21 Oct 2021 09:55:52 +0200 Subject: [PATCH] fix(ConfirmAppRestartModal): correct button type --- ui/app/AppLayouts/Profile/popups/ConfirmAppRestartModal.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ui/app/AppLayouts/Profile/popups/ConfirmAppRestartModal.qml b/ui/app/AppLayouts/Profile/popups/ConfirmAppRestartModal.qml index a34438718c..28e0608632 100644 --- a/ui/app/AppLayouts/Profile/popups/ConfirmAppRestartModal.qml +++ b/ui/app/AppLayouts/Profile/popups/ConfirmAppRestartModal.qml @@ -35,7 +35,7 @@ ModalPopup { StatusButton { anchors.right: parent.right anchors.rightMargin: Style.current.smallPadding - type: StatusBaseButton.Type.Warn + type: StatusBaseButton.Type.Danger text: qsTr("Restart") anchors.bottom: parent.bottom onClicked: Qt.quit()