diff options
| author | Jacob Brydolf <jacob@brydolf.net> | 2016-11-19 16:45:38 +0100 |
|---|---|---|
| committer | Jacob Brydolf <jacob@brydolf.net> | 2016-11-19 16:46:21 +0100 |
| commit | 5b4c2c810c424d7f53fb5bbf702d70155256085b (patch) | |
| tree | dd6813f7c10031e026741b2520360e197781839c /components | |
| parent | c83336cc4714215725cba957d8ea164a57c33987 (diff) | |
| download | monzero-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.qml | 2 |
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(); } } } |
