mirror of
https://github.com/monero-project/monero-gui.git
synced 2025-01-11 05:14:34 +00:00
Correctly maximize window
This commit is contained in:
parent
1107daab98
commit
d2ee1845e1
1 changed files with 1 additions and 1 deletions
2
main.qml
2
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
|
||||
|
|
Loading…
Reference in a new issue