1
0
mirror of https://github.com/KDE/latte-dock.git synced 2025-02-15 02:00:04 +03:00

upgrade overloadedIcons/Window debug flags Ability

This commit is contained in:
Michail Vourlakos 2020-11-29 18:04:59 +02:00
parent 169b7d6aae
commit 13a4b64118
2 changed files with 2 additions and 4 deletions

View File

@ -409,7 +409,7 @@ Item{
Loader{
anchors.centerIn: parent
active: root.debugModeOverloadedIcons
active: appletItem.debug.overloadedIconsEnabled
sourceComponent: Rectangle{
width: 30
height: 30

View File

@ -67,8 +67,6 @@ Item {
property bool debugModeLocalGeometry: Qt.application.arguments.indexOf("--localgeometry")>=0
property bool debugModeSpacers: Qt.application.arguments.indexOf("--spacers")>=0
property bool debugModeTimers: Qt.application.arguments.indexOf("--timers")>=0
property bool debugModeWindow: Qt.application.arguments.indexOf("--with-window")>=0
property bool debugModeOverloadedIcons: Qt.application.arguments.indexOf("--overloaded-icons")>=0
readonly property int version: LatteCore.Environment.makeVersion(0,9,75)
readonly property bool kirigamiLibraryIsFound: LatteCore.Environment.frameworksVersion >= LatteCore.Environment.makeVersion(5,69,0)
@ -1297,7 +1295,7 @@ Item {
}
Loader{
active: root.debugModeWindow
active: debug.windowEnabled
sourceComponent: Debugger.DebugWindow{}
}