aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorluigi1111 <luigi1111w@gmail.com>2020-01-08 18:43:03 -0500
committerluigi1111 <luigi1111w@gmail.com>2020-01-08 18:43:03 -0500
commitef2b0cfa4a7327d8e6fd086452890cebe55e3b6f (patch)
tree5dcc4ccb85068a992dfbfe796f720fd2244a8b70
parentfe08950b0322c4bcbd501ac4ccd3fefded8f18e3 (diff)
parenta5b500cd93f6f5166012fbd883efa75f013150ae (diff)
downloadmonzero-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.qml17
1 files changed, 9 insertions, 8 deletions
diff --git a/main.qml b/main.qml
index bbb364a0..efe8b740 100644
--- a/main.qml
+++ b/main.qml
@@ -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