aboutsummaryrefslogtreecommitdiff
path: root/main.qml
diff options
context:
space:
mode:
authorSander Ferdinand <sa.ferdinand@gmail.com>2018-04-21 22:21:35 +0200
committerSander Ferdinand <sa.ferdinand@gmail.com>2018-04-25 16:32:12 +0200
commit7fe9d71eb366dc0f9eef9258e212ca9ceb785f2c (patch)
tree1219f3107fb7ef161876372aef0e2ca256fd8f92 /main.qml
parent4d56ed9e27b63df08a20f6c1459499aaca7bd1d6 (diff)
downloadmonzero-gui-7fe9d71eb366dc0f9eef9258e212ca9ceb785f2c.tar.gz
monzero-gui-7fe9d71eb366dc0f9eef9258e212ca9ceb785f2c.tar.xz
monzero-gui-7fe9d71eb366dc0f9eef9258e212ca9ceb785f2c.zip
Added daemonConsole component to main.qml
Diffstat (limited to 'main.qml')
-rw-r--r--main.qml18
1 files changed, 18 insertions, 0 deletions
diff --git a/main.qml b/main.qml
index 19956c26..50621493 100644
--- a/main.qml
+++ b/main.qml
@@ -1804,7 +1804,25 @@ ApplicationWindow {
middlePanel.focus = true
middlePanel.focus = false
}
+ }
+ // Daemon console
+ DaemonConsole {
+ id: daemonConsolePopup
+ height:500
+ width:800
+ title: qsTr("Daemon log") + translationManager.emptyString
+ onAccepted: {
+ close();
+ }
+ }
+ // background gradient
+ Rectangle {
+ id: inactiveOverlay
+ visible: false
+ anchors.fill: parent
+ color: "black"
+ opacity: 0.8
}
}