aboutsummaryrefslogtreecommitdiff
path: root/main.qml
diff options
context:
space:
mode:
authorMaxXor <admin@maxxor.org>2018-07-28 08:06:05 -0400
committerMaxXor <admin@maxxor.org>2018-07-28 08:06:05 -0400
commitd2ee1845e16f6617455fb2ead840acda8245ca43 (patch)
tree5b906abca32cd32d4b9b09d6f7d171a825d74504 /main.qml
parent1107daab98ccf39a259bf1979c751e18cb92ee8b (diff)
downloadmonzero-gui-d2ee1845e16f6617455fb2ead840acda8245ca43.tar.gz
monzero-gui-d2ee1845e16f6617455fb2ead840acda8245ca43.tar.xz
monzero-gui-d2ee1845e16f6617455fb2ead840acda8245ca43.zip
Correctly maximize window
Diffstat (limited to 'main.qml')
-rw-r--r--main.qml2
1 files changed, 1 insertions, 1 deletions
diff --git a/main.qml b/main.qml
index 4b6a6942..d46d0080 100644
--- a/main.qml
+++ b/main.qml
@@ -1631,7 +1631,7 @@ ApplicationWindow {
showMoneroLogo: true
onCloseClicked: appWindow.close();
onMaximizeClicked: {
- appWindow.visibility = appWindow.visibility !== Window.FullScreen ? Window.FullScreen :
+ appWindow.visibility = appWindow.visibility !== Window.Maximized ? Window.Maximized :
Window.Windowed
}
onMinimizeClicked: appWindow.visibility = Window.Minimized