diff options
| author | Riccardo Spagni <ric@spagni.net> | 2016-11-24 12:34:22 +0200 |
|---|---|---|
| committer | Riccardo Spagni <ric@spagni.net> | 2016-11-24 12:34:22 +0200 |
| commit | a8c30131e441745f822690418c660c6bc7ae1aa2 (patch) | |
| tree | ecfc32771aaf1b64c9c81760c160929ba7554b90 | |
| parent | d5fc4afc43925a8e2f39855e0e5c602d0e32cb5f (diff) | |
| parent | 5b4c2c810c424d7f53fb5bbf702d70155256085b (diff) | |
| download | monzero-gui-a8c30131e441745f822690418c660c6bc7ae1aa2.tar.gz monzero-gui-a8c30131e441745f822690418c660c6bc7ae1aa2.tar.xz monzero-gui-a8c30131e441745f822690418c660c6bc7ae1aa2.zip | |
Merge pull request #189
5b4c2c8 Clean exit on app close button (Jacob Brydolf)
| -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(); } } } |
