aboutsummaryrefslogtreecommitdiff
path: root/MiddlePanel.qml
diff options
context:
space:
mode:
Diffstat (limited to 'MiddlePanel.qml')
-rw-r--r--MiddlePanel.qml16
1 files changed, 5 insertions, 11 deletions
diff --git a/MiddlePanel.qml b/MiddlePanel.qml
index e14255a5..16cc9492 100644
--- a/MiddlePanel.qml
+++ b/MiddlePanel.qml
@@ -32,6 +32,7 @@ import QtQuick 2.2
import QtQuick.Controls 1.4
import QtQuick.Layouts 1.1
import QtGraphicalEffects 1.0
+import moneroComponents.Wallet 1.0
import "./pages"
@@ -56,9 +57,6 @@ Rectangle {
signal generatePaymentIdInvoked()
signal checkPaymentClicked(string address, string txid, string txkey);
- // Disable transfer page if daemon isnt fully synced
- enabled: (currentView !== transferView || appWindow.daemonSynced)
-
color: "#F0EEEE"
onCurrentViewChanged: {
@@ -72,6 +70,10 @@ Rectangle {
}
}
+ function updateStatus(){
+ transferView.updateStatus();
+ }
+
// XXX: just for memo, to be removed
// states: [
@@ -292,14 +294,6 @@ Rectangle {
color: "#DBDBDB"
}
- Rectangle {
- id:desaturate
- color:"black"
- anchors.fill: parent
- opacity: 0.1
- visible: (root.enabled)? 0 : 1;
- }
-
/* connect "payment" click */
Connections {