diff options
| author | luigi1111 <luigi1111w@gmail.com> | 2019-04-30 15:22:41 -0500 |
|---|---|---|
| committer | luigi1111 <luigi1111w@gmail.com> | 2019-04-30 15:22:41 -0500 |
| commit | 7daff4c13a7a4b5bc7793169a291f7403bfc658f (patch) | |
| tree | a52c00bc7da02a64b7d37cb7e7248ef2d31424a2 | |
| parent | 6b54017f08cdd1939447cc60000dc004fb391fe0 (diff) | |
| parent | b2a7cb3d40f3712fd0583a2221dea3edacdd4928 (diff) | |
| download | monzero-gui-7daff4c13a7a4b5bc7793169a291f7403bfc658f.tar.gz monzero-gui-7daff4c13a7a4b5bc7793169a291f7403bfc658f.tar.xz monzero-gui-7daff4c13a7a4b5bc7793169a291f7403bfc658f.zip | |
Merge pull request #2117
b2a7cb3 macOS: enable fullscreen support (selsta)
| -rw-r--r-- | components/InputDialog.qml | 1 | ||||
| -rw-r--r-- | components/StandardDialog.qml | 1 | ||||
| -rw-r--r-- | js/Windows.js | 2 |
3 files changed, 1 insertions, 3 deletions
diff --git a/components/InputDialog.qml b/components/InputDialog.qml index 6401b0ce..01d1e2c5 100644 --- a/components/InputDialog.qml +++ b/components/InputDialog.qml @@ -50,7 +50,6 @@ Item { leftPanel.enabled = false middlePanel.enabled = false titleBar.state = "essentials" - show() root.visible = true; input.focus = true; input.text = ""; diff --git a/components/StandardDialog.qml b/components/StandardDialog.qml index b8694d9d..338d6767 100644 --- a/components/StandardDialog.qml +++ b/components/StandardDialog.qml @@ -86,7 +86,6 @@ Rectangle { root.x = parent.width/2 - root.width/2 root.y = 100 } - show() root.z = 11 root.visible = true; } diff --git a/js/Windows.js b/js/Windows.js index a86d04ce..b0d465b5 100644 --- a/js/Windows.js +++ b/js/Windows.js @@ -1,5 +1,5 @@ var flagsCustomDecorations = (Qt.FramelessWindowHint | Qt.CustomizeWindowHint | Qt.WindowSystemMenuHint | Qt.Window); -var flags = (Qt.WindowSystemMenuHint | Qt.Window | Qt.WindowMinimizeButtonHint | Qt.WindowCloseButtonHint | Qt.WindowTitleHint | Qt.WindowMaximizeButtonHint); +var flags = (Qt.WindowSystemMenuHint | Qt.Window | Qt.WindowMinimizeButtonHint | Qt.WindowCloseButtonHint | Qt.WindowTitleHint | Qt.WindowMaximizeButtonHint | Qt.WindowFullscreenButtonHint); /** * Toggles window decorations |
