diff options
| author | luigi1111 <luigi1111w@gmail.com> | 2020-01-08 18:43:03 -0500 |
|---|---|---|
| committer | luigi1111 <luigi1111w@gmail.com> | 2020-01-08 18:43:03 -0500 |
| commit | ef2b0cfa4a7327d8e6fd086452890cebe55e3b6f (patch) | |
| tree | 5dcc4ccb85068a992dfbfe796f720fd2244a8b70 | |
| parent | fe08950b0322c4bcbd501ac4ccd3fefded8f18e3 (diff) | |
| parent | a5b500cd93f6f5166012fbd883efa75f013150ae (diff) | |
| download | monzero-gui-ef2b0cfa4a7327d8e6fd086452890cebe55e3b6f.tar.gz monzero-gui-ef2b0cfa4a7327d8e6fd086452890cebe55e3b6f.tar.xz monzero-gui-ef2b0cfa4a7327d8e6fd086452890cebe55e3b6f.zip | |
Merge pull request #2709
a5b500c main: add blur to wizard password dialog (selsta)
| -rw-r--r-- | main.qml | 17 |
1 files changed, 9 insertions, 8 deletions
@@ -1681,6 +1681,15 @@ ApplicationWindow { anchors.right: parent.right state: "Transfer" } + + WizardController { + id: wizard + anchors.fill: parent + onUseMoneroClicked: { + rootItem.state = "normal"; + appWindow.openWallet("wizard"); + } + } } FastBlur { @@ -1691,14 +1700,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 |
