1
0
mirror of https://github.com/KDE/latte-dock.git synced 2025-03-20 06:50:28 +03:00

fix showing debug window

This commit is contained in:
Michail Vourlakos 2017-06-04 18:43:56 +03:00
parent 3b0f46760a
commit 319f30d2cc

View File

@ -48,6 +48,7 @@ DragDrop.DropArea {
////BEGIN properties
property bool debugMode: Qt.application.arguments.indexOf("--graphics")>=0
property bool debugModeWindow: Qt.application.arguments.indexOf("--with-window")>=0
property bool globalDirectRender: false //it is used as a globalDirectRender for all elements in the dock
property bool directRenderTimerIsRunning: enableDirectRenderTimer.running
property int directRenderAnimationTime: 0
@ -1150,7 +1151,7 @@ DragDrop.DropArea {
}
Loader{
active: root.debugMode
active: root.debugModeWindow
sourceComponent: DebugWindow{}
}