From 92ebbd592cf9fbfc5af3684d3cb0e459112259c0 Mon Sep 17 00:00:00 2001 From: Arjen Hiemstra Date: Mon, 23 Feb 2015 16:48:35 +0100 Subject: [PATCH] Fix quitting the application from File > Quit --- Printer.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Printer.qml b/Printer.qml index b26712caa4..76c66b4385 100644 --- a/Printer.qml +++ b/Printer.qml @@ -215,7 +215,7 @@ UM.MainWindow { text: qsTr("Quit"); iconName: "application-exit"; shortcut: StandardKey.Quit; - onTriggered: Qt.quit(); + onTriggered: base.visible = false; } Action {