diff options
| author | MaxXor <admin@maxxor.org> | 2018-07-28 08:06:05 -0400 |
|---|---|---|
| committer | MaxXor <admin@maxxor.org> | 2018-07-28 08:06:05 -0400 |
| commit | d2ee1845e16f6617455fb2ead840acda8245ca43 (patch) | |
| tree | 5b906abca32cd32d4b9b09d6f7d171a825d74504 | |
| parent | 1107daab98ccf39a259bf1979c751e18cb92ee8b (diff) | |
| download | monzero-gui-d2ee1845e16f6617455fb2ead840acda8245ca43.tar.gz monzero-gui-d2ee1845e16f6617455fb2ead840acda8245ca43.tar.xz monzero-gui-d2ee1845e16f6617455fb2ead840acda8245ca43.zip | |
Correctly maximize window
| -rw-r--r-- | main.qml | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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 |
