aboutsummaryrefslogtreecommitdiff
path: root/components
diff options
context:
space:
mode:
authorSander Ferdinand <sa.ferdinand@gmail.com>2018-05-03 12:29:04 +0200
committerSander Ferdinand <sa.ferdinand@gmail.com>2018-05-03 12:35:53 +0200
commitbff27010f34459476effccbb9f03bf3e242bfaae (patch)
tree2ece99ac8b91552d6ab0ef1ea107aa429b96c504 /components
parent3e5f5f324540ffd98516c84a869dc2f8675a72fc (diff)
downloadmonzero-gui-bff27010f34459476effccbb9f03bf3e242bfaae.tar.gz
monzero-gui-bff27010f34459476effccbb9f03bf3e242bfaae.tar.xz
monzero-gui-bff27010f34459476effccbb9f03bf3e242bfaae.zip
Fixes the background for 2 popups
Diffstat (limited to 'components')
-rw-r--r--components/InputDialog.qml2
-rw-r--r--components/NewPasswordDialog.qml2
2 files changed, 4 insertions, 0 deletions
diff --git a/components/InputDialog.qml b/components/InputDialog.qml
index 7cb37ef4..fd1c3e3d 100644
--- a/components/InputDialog.qml
+++ b/components/InputDialog.qml
@@ -46,6 +46,7 @@ Item {
signal rejected()
function open() {
+ inactiveOverlay.visible = true
leftPanel.enabled = false
middlePanel.enabled = false
titleBar.enabled = false
@@ -56,6 +57,7 @@ Item {
}
function close() {
+ inactiveOverlay.visible = false
leftPanel.enabled = true
middlePanel.enabled = true
titleBar.enabled = true
diff --git a/components/NewPasswordDialog.qml b/components/NewPasswordDialog.qml
index 032acbc8..f974965d 100644
--- a/components/NewPasswordDialog.qml
+++ b/components/NewPasswordDialog.qml
@@ -48,6 +48,7 @@ Item {
signal closeCallback()
function open() {
+ inactiveOverlay.visible = true
leftPanel.enabled = false
middlePanel.enabled = false
titleBar.enabled = false
@@ -59,6 +60,7 @@ Item {
}
function close() {
+ inactiveOverlay.visible = false
leftPanel.enabled = true
middlePanel.enabled = true
titleBar.enabled = true