diff options
| author | Sander Ferdinand <sa.ferdinand@gmail.com> | 2018-04-21 22:21:35 +0200 |
|---|---|---|
| committer | Sander Ferdinand <sa.ferdinand@gmail.com> | 2018-04-25 16:32:12 +0200 |
| commit | 7fe9d71eb366dc0f9eef9258e212ca9ceb785f2c (patch) | |
| tree | 1219f3107fb7ef161876372aef0e2ca256fd8f92 /main.qml | |
| parent | 4d56ed9e27b63df08a20f6c1459499aaca7bd1d6 (diff) | |
| download | monzero-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.qml | 18 |
1 files changed, 18 insertions, 0 deletions
@@ -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 } } |
