From abd333ea63f96b1d106fc53df77972d6b5801fdc Mon Sep 17 00:00:00 2001 From: Michail Vourlakos Date: Fri, 6 Dec 2019 11:59:43 +0200 Subject: [PATCH] fix debug window texts --- containment/package/contents/ui/DebugWindow.qml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/containment/package/contents/ui/DebugWindow.qml b/containment/package/contents/ui/DebugWindow.qml index 30fc5c181..a880d1a00 100644 --- a/containment/package/contents/ui/DebugWindow.qml +++ b/containment/package/contents/ui/DebugWindow.qml @@ -410,7 +410,12 @@ Window{ } Text{ - text: root.autoDecreaseIconSize + text: { + if (automaticItemSizer.isActive) + return "Yes"; + else + return "No"; + } } Text{