diff options
| author | Jaquee <jaquee.monero@gmail.com> | 2017-08-08 13:35:24 +0200 |
|---|---|---|
| committer | Jaquee <jaquee.monero@gmail.com> | 2017-11-03 16:57:12 +0100 |
| commit | e324e160daf409bc63e6e98cce027b93759d40fa (patch) | |
| tree | c224d079ece132c80ed334dc040f60fb5246334b | |
| parent | 44b72eaff2c877792d9cae3a2c4be2aba3018320 (diff) | |
| download | monzero-gui-e324e160daf409bc63e6e98cce027b93759d40fa.tar.gz monzero-gui-e324e160daf409bc63e6e98cce027b93759d40fa.tar.xz monzero-gui-e324e160daf409bc63e6e98cce027b93759d40fa.zip | |
new dialog z fixes
| -rw-r--r-- | main.qml | 11 |
1 files changed, 9 insertions, 2 deletions
@@ -955,6 +955,8 @@ ApplicationWindow { // dynamically change onclose handler property var onCloseCallback id: informationPopup + anchors.fill: parent + z: parent.z + 1 cancelVisible: false onAccepted: { if (onCloseCallback) { @@ -965,6 +967,7 @@ ApplicationWindow { // Confrirmation aka question dialog StandardDialog { + z:10 id: transactionConfirmationPopup onAccepted: { close(); @@ -991,6 +994,7 @@ ApplicationWindow { } StandardDialog { + z:11 id: confirmationDialog property var onAcceptedCallback property var onRejectedCallback @@ -1077,7 +1081,9 @@ ApplicationWindow { PasswordDialog { id: passwordDialog - + visible: false + z: parent.z + 1 + anchors.fill: parent onAccepted: { appWindow.initialize(); } @@ -1161,12 +1167,13 @@ ApplicationWindow { PropertyChanges { target: wizard; visible: true } PropertyChanges { target: appWindow; width: (screenWidth < 930 || isAndroid || isIOS)? screenWidth : 930; } PropertyChanges { target: appWindow; height: maxWindowHeight; } - PropertyChanges { target: resizeArea; visible: false } + PropertyChanges { target: resizeArea; visible: true } PropertyChanges { target: titleBar; maximizeButtonVisible: false } // PropertyChanges { target: frameArea; blocked: true } PropertyChanges { target: titleBar; visible: false } PropertyChanges { target: titleBar; y: 0 } PropertyChanges { target: titleBar; title: qsTr("Program setup wizard") + translationManager.emptyString } + PropertyChanges { target: mobileHeader; visible: false } }, State { name: "normal" PropertyChanges { target: leftPanel; visible: (isMobile)? false : true } |
