From ec186f140b7d5dcdcfeea49474ee76f0ccd5fa7c Mon Sep 17 00:00:00 2001 From: casper Date: Fri, 18 Feb 2022 16:01:51 +0100 Subject: [PATCH] Use cura-styled button in about page CURA-8688 --- resources/qml/Dialogs/AboutDialog.qml | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/resources/qml/Dialogs/AboutDialog.qml b/resources/qml/Dialogs/AboutDialog.qml index d917656c9f..d08b9658db 100644 --- a/resources/qml/Dialogs/AboutDialog.qml +++ b/resources/qml/Dialogs/AboutDialog.qml @@ -165,12 +165,11 @@ UM.Dialog } } - rightButtons: Cura.SecondaryButton + rightButtons: Cura.TertiaryButton { //: Close about dialog button id: closeButton text: catalog.i18nc("@action:button", "Close") - - onClicked: base.visible = false; + onClicked: reject() } }