diff options
| author | selsta <selsta@sent.at> | 2020-01-08 21:56:15 +0100 |
|---|---|---|
| committer | selsta <selsta@sent.at> | 2020-01-08 21:56:15 +0100 |
| commit | a5b500cd93f6f5166012fbd883efa75f013150ae (patch) | |
| tree | 09c6dd8ec7a41181ce5ee248277b2e8d617f08a0 | |
| parent | 43f378b7d282fe595f681c3b1a9f27c97255f70e (diff) | |
| download | monzero-gui-a5b500cd93f6f5166012fbd883efa75f013150ae.tar.gz monzero-gui-a5b500cd93f6f5166012fbd883efa75f013150ae.tar.xz monzero-gui-a5b500cd93f6f5166012fbd883efa75f013150ae.zip | |
main: add blur to wizard password dialog
| -rw-r--r-- | main.qml | 17 |
1 files changed, 9 insertions, 8 deletions
@@ -1679,6 +1679,15 @@ ApplicationWindow { anchors.right: parent.right state: "Transfer" } + + WizardController { + id: wizard + anchors.fill: parent + onUseMoneroClicked: { + rootItem.state = "normal"; + appWindow.openWallet("wizard"); + } + } } FastBlur { @@ -1689,14 +1698,6 @@ ApplicationWindow { visible: passwordDialog.visible || inputDialog.visible || splash.visible } - WizardController { - id: wizard - anchors.fill: parent - onUseMoneroClicked: { - rootItem.state = "normal"; - appWindow.openWallet("wizard"); - } - } WizardLang { id: languageView |
