forked from Public/monero-gui
new dialog z fixes
This commit is contained in:
11
main.qml
11
main.qml
@@ -955,6 +955,8 @@ ApplicationWindow {
|
|||||||
// dynamically change onclose handler
|
// dynamically change onclose handler
|
||||||
property var onCloseCallback
|
property var onCloseCallback
|
||||||
id: informationPopup
|
id: informationPopup
|
||||||
|
anchors.fill: parent
|
||||||
|
z: parent.z + 1
|
||||||
cancelVisible: false
|
cancelVisible: false
|
||||||
onAccepted: {
|
onAccepted: {
|
||||||
if (onCloseCallback) {
|
if (onCloseCallback) {
|
||||||
@@ -965,6 +967,7 @@ ApplicationWindow {
|
|||||||
|
|
||||||
// Confrirmation aka question dialog
|
// Confrirmation aka question dialog
|
||||||
StandardDialog {
|
StandardDialog {
|
||||||
|
z:10
|
||||||
id: transactionConfirmationPopup
|
id: transactionConfirmationPopup
|
||||||
onAccepted: {
|
onAccepted: {
|
||||||
close();
|
close();
|
||||||
@@ -991,6 +994,7 @@ ApplicationWindow {
|
|||||||
}
|
}
|
||||||
|
|
||||||
StandardDialog {
|
StandardDialog {
|
||||||
|
z:11
|
||||||
id: confirmationDialog
|
id: confirmationDialog
|
||||||
property var onAcceptedCallback
|
property var onAcceptedCallback
|
||||||
property var onRejectedCallback
|
property var onRejectedCallback
|
||||||
@@ -1077,7 +1081,9 @@ ApplicationWindow {
|
|||||||
|
|
||||||
PasswordDialog {
|
PasswordDialog {
|
||||||
id: passwordDialog
|
id: passwordDialog
|
||||||
|
visible: false
|
||||||
|
z: parent.z + 1
|
||||||
|
anchors.fill: parent
|
||||||
onAccepted: {
|
onAccepted: {
|
||||||
appWindow.initialize();
|
appWindow.initialize();
|
||||||
}
|
}
|
||||||
@@ -1161,12 +1167,13 @@ ApplicationWindow {
|
|||||||
PropertyChanges { target: wizard; visible: true }
|
PropertyChanges { target: wizard; visible: true }
|
||||||
PropertyChanges { target: appWindow; width: (screenWidth < 930 || isAndroid || isIOS)? screenWidth : 930; }
|
PropertyChanges { target: appWindow; width: (screenWidth < 930 || isAndroid || isIOS)? screenWidth : 930; }
|
||||||
PropertyChanges { target: appWindow; height: maxWindowHeight; }
|
PropertyChanges { target: appWindow; height: maxWindowHeight; }
|
||||||
PropertyChanges { target: resizeArea; visible: false }
|
PropertyChanges { target: resizeArea; visible: true }
|
||||||
PropertyChanges { target: titleBar; maximizeButtonVisible: false }
|
PropertyChanges { target: titleBar; maximizeButtonVisible: false }
|
||||||
// PropertyChanges { target: frameArea; blocked: true }
|
// PropertyChanges { target: frameArea; blocked: true }
|
||||||
PropertyChanges { target: titleBar; visible: false }
|
PropertyChanges { target: titleBar; visible: false }
|
||||||
PropertyChanges { target: titleBar; y: 0 }
|
PropertyChanges { target: titleBar; y: 0 }
|
||||||
PropertyChanges { target: titleBar; title: qsTr("Program setup wizard") + translationManager.emptyString }
|
PropertyChanges { target: titleBar; title: qsTr("Program setup wizard") + translationManager.emptyString }
|
||||||
|
PropertyChanges { target: mobileHeader; visible: false }
|
||||||
}, State {
|
}, State {
|
||||||
name: "normal"
|
name: "normal"
|
||||||
PropertyChanges { target: leftPanel; visible: (isMobile)? false : true }
|
PropertyChanges { target: leftPanel; visible: (isMobile)? false : true }
|
||||||
|
|||||||
Reference in New Issue
Block a user