From 13fd1a27435aaa1a21b95534cd61e88755ae73fe Mon Sep 17 00:00:00 2001 From: Kai Uwe Broulik Date: Fri, 4 Mar 2022 23:40:11 +0100 Subject: [PATCH] [Icons KCM] Give measure delegate a text It appears at some point `ItemDelegate` changed to collapse when it has no text, breaking the popup size calculation. (cherry picked from commit 9e1ab30ccabd2b8d107a31162cf3c6e6fda2bb13) --- kcms/icons/package/contents/ui/IconSizePopup.qml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/kcms/icons/package/contents/ui/IconSizePopup.qml b/kcms/icons/package/contents/ui/IconSizePopup.qml index a5fa0dac1..7a8a6c140 100644 --- a/kcms/icons/package/contents/ui/IconSizePopup.qml +++ b/kcms/icons/package/contents/ui/IconSizePopup.qml @@ -44,6 +44,8 @@ QtControls.Popup { QtControls.ItemDelegate { // purely for metrics... id: measureDelegate + // without text it has no real height + text: "For metrics only" visible: false }