diff options
| author | luigi1111 <luigi1111w@gmail.com> | 2019-07-15 18:43:33 -0500 |
|---|---|---|
| committer | luigi1111 <luigi1111w@gmail.com> | 2019-07-15 18:43:33 -0500 |
| commit | 4370733b2b352f3dd8af7749a19754c7dc31f702 (patch) | |
| tree | 043dc36f40ab99702fd3068a14ffdfcea8ef7d1b | |
| parent | cac766255811a982aed2ecd9ab331b926a4a7df8 (diff) | |
| parent | d113bf1a6646a07bf2cc6dd807629246b50c816d (diff) | |
| download | monzero-gui-4370733b2b352f3dd8af7749a19754c7dc31f702.tar.gz monzero-gui-4370733b2b352f3dd8af7749a19754c7dc31f702.tar.xz monzero-gui-4370733b2b352f3dd8af7749a19754c7dc31f702.zip | |
Merge pull request #2282
d113bf1 main: fix password dialog overlay (selsta)
| -rw-r--r-- | main.qml | 10 |
1 files changed, 6 insertions, 4 deletions
@@ -1109,10 +1109,12 @@ ApplicationWindow { console.log("Hiding processing splash") splash.close(); - leftPanel.enabled = true - middlePanel.enabled = true - titleBar.enabled = true - inactiveOverlay.visible = false; + if (!passwordDialog.visible) { + leftPanel.enabled = true + middlePanel.enabled = true + titleBar.enabled = true + inactiveOverlay.visible = false; + } } // close wallet and show wizard |
