aboutsummaryrefslogtreecommitdiff
path: root/components
diff options
context:
space:
mode:
authorJacob Brydolf <jacob@brydolf.net>2016-11-19 16:45:38 +0100
committerJacob Brydolf <jacob@brydolf.net>2016-11-19 16:46:21 +0100
commit5b4c2c810c424d7f53fb5bbf702d70155256085b (patch)
treedd6813f7c10031e026741b2520360e197781839c /components
parentc83336cc4714215725cba957d8ea164a57c33987 (diff)
downloadmonzero-gui-5b4c2c810c424d7f53fb5bbf702d70155256085b.tar.gz
monzero-gui-5b4c2c810c424d7f53fb5bbf702d70155256085b.tar.xz
monzero-gui-5b4c2c810c424d7f53fb5bbf702d70155256085b.zip
Clean exit on app close button
Diffstat (limited to 'components')
-rw-r--r--components/TitleBar.qml2
1 files changed, 1 insertions, 1 deletions
diff --git a/components/TitleBar.qml b/components/TitleBar.qml
index 8e1c9e32..c5c9658a 100644
--- a/components/TitleBar.qml
+++ b/components/TitleBar.qml
@@ -167,7 +167,7 @@ Rectangle {
MouseArea {
anchors.fill: parent
- onClicked: Qt.quit()
+ onClicked: appWindow.close();
}
}
}