aboutsummaryrefslogtreecommitdiff
path: root/components
diff options
context:
space:
mode:
Diffstat (limited to 'components')
-rw-r--r--components/DaemonConsole.qml2
-rw-r--r--components/InputDialog.qml2
-rw-r--r--components/PasswordDialog.qml3
3 files changed, 0 insertions, 7 deletions
diff --git a/components/DaemonConsole.qml b/components/DaemonConsole.qml
index 20e14fe4..b7a58527 100644
--- a/components/DaemonConsole.qml
+++ b/components/DaemonConsole.qml
@@ -53,11 +53,9 @@ Window {
signal rejected()
onClosing: {
- inactiveOverlay.visible = false;
}
function open() {
- inactiveOverlay.visible = true;
show();
}
diff --git a/components/InputDialog.qml b/components/InputDialog.qml
index 0bd2c5f4..6267708c 100644
--- a/components/InputDialog.qml
+++ b/components/InputDialog.qml
@@ -46,7 +46,6 @@ Item {
signal rejected()
function open(prepopulate) {
- inactiveOverlay.visible = true
leftPanel.enabled = false
middlePanel.enabled = false
titleBar.state = "essentials"
@@ -56,7 +55,6 @@ Item {
}
function close() {
- inactiveOverlay.visible = false
leftPanel.enabled = true
middlePanel.enabled = true
titleBar.state = "default"
diff --git a/components/PasswordDialog.qml b/components/PasswordDialog.qml
index 587d484e..964ab9a6 100644
--- a/components/PasswordDialog.qml
+++ b/components/PasswordDialog.qml
@@ -68,7 +68,6 @@ Item {
passwordInput1.text = ""
passwordInput2.text = ""
passwordInput1.forceActiveFocus();
- inactiveOverlay.visible = true // draw appwindow inactive
root.walletName = walletName ? walletName : ""
errorTextLabel.text = errorText ? errorText : "";
leftPanel.enabled = false
@@ -106,7 +105,6 @@ Item {
}
function close() {
- inactiveOverlay.visible = false
leftPanel.enabled = true
middlePanel.enabled = true
wizard.enabled = true
@@ -125,7 +123,6 @@ Item {
}
ColumnLayout {
- z: inactiveOverlay.z + 1
id: mainLayout
spacing: 10
anchors { fill: parent; margins: 35 }