aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorselsta <selsta@sent.at>2020-01-08 21:56:15 +0100
committerselsta <selsta@sent.at>2020-01-08 21:56:15 +0100
commita5b500cd93f6f5166012fbd883efa75f013150ae (patch)
tree09c6dd8ec7a41181ce5ee248277b2e8d617f08a0
parent43f378b7d282fe595f681c3b1a9f27c97255f70e (diff)
downloadmonzero-gui-a5b500cd93f6f5166012fbd883efa75f013150ae.tar.gz
monzero-gui-a5b500cd93f6f5166012fbd883efa75f013150ae.tar.xz
monzero-gui-a5b500cd93f6f5166012fbd883efa75f013150ae.zip
main: add blur to wizard password dialog
-rw-r--r--main.qml17
1 files changed, 9 insertions, 8 deletions
diff --git a/main.qml b/main.qml
index f8efa202..60d61afb 100644
--- a/main.qml
+++ b/main.qml
@@ -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