Added daemonConsole component to main.qml

This commit is contained in:
Sander Ferdinand
2018-04-21 22:21:35 +02:00
parent 4d56ed9e27
commit 7fe9d71eb3
2 changed files with 22 additions and 13 deletions

View File

@@ -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
}
}