From e646d53b539aacd2b0daea0a18fe15e1cb70c95a Mon Sep 17 00:00:00 2001 From: Ghostkeeper Date: Mon, 6 Dec 2021 16:05:38 +0100 Subject: [PATCH] Make quit button quit Cura Contributes to issue CURA-8587. --- plugins/Marketplace/resources/qml/Marketplace.qml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/plugins/Marketplace/resources/qml/Marketplace.qml b/plugins/Marketplace/resources/qml/Marketplace.qml index e765f0f009..cde33faa97 100644 --- a/plugins/Marketplace/resources/qml/Marketplace.qml +++ b/plugins/Marketplace/resources/qml/Marketplace.qml @@ -271,6 +271,11 @@ Window { id: quitButton text: catalog.i18nc("@info:button, %1 is the application name", "Quit %1").arg(CuraApplication.applicationDisplayName) + onClicked: + { + marketplaceDialog.hide(); + CuraApplication.closeApplication(); + } } } }