diff options
| author | luigi1111 <luigi1111w@gmail.com> | 2020-07-08 13:36:52 -0500 |
|---|---|---|
| committer | luigi1111 <luigi1111w@gmail.com> | 2020-07-08 13:36:52 -0500 |
| commit | 51739dfb22fec1c5f7e40cf0e3fdfa99f47d473b (patch) | |
| tree | ceee3bd555e196a75430d64f6f32b0de4d739887 | |
| parent | be5e6772a4035984b8f259680f0a31642872b1b8 (diff) | |
| parent | 1edc068047f2afcb2da4236de06302b877eab76d (diff) | |
| download | monzero-gui-51739dfb22fec1c5f7e40cf0e3fdfa99f47d473b.tar.gz monzero-gui-51739dfb22fec1c5f7e40cf0e3fdfa99f47d473b.tar.xz monzero-gui-51739dfb22fec1c5f7e40cf0e3fdfa99f47d473b.zip | |
Merge pull request #2949
1edc068 PasswordDialog: remove already defined z value (selsta)
| -rw-r--r-- | components/PasswordDialog.qml | 1 | ||||
| -rw-r--r-- | main.qml | 2 |
2 files changed, 1 insertions, 2 deletions
diff --git a/components/PasswordDialog.qml b/components/PasswordDialog.qml index a572b874..9ee362f5 100644 --- a/components/PasswordDialog.qml +++ b/components/PasswordDialog.qml @@ -41,7 +41,6 @@ import "../js/Utils.js" as Utils Item { id: root visible: false - z: parent.z + 2 property alias password: passwordInput1.text property string walletName @@ -1523,7 +1523,7 @@ ApplicationWindow { PasswordDialog { id: passwordDialog visible: false - z: parent.z + 1 + z: parent.z + 2 anchors.fill: parent property var onAcceptedCallback property var onRejectedCallback |
