forked from Public/monero-gui
Added daemonConsole component to main.qml
This commit is contained in:
18
main.qml
18
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
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user