From 160673ee6596ae5ff15e2d002d08b89f76cf7c68 Mon Sep 17 00:00:00 2001 From: 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com> Date: Fri, 20 Jun 2025 22:43:39 +1000 Subject: launcher: fix height when one item --- modules/launcher/ContentList.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'modules') diff --git a/modules/launcher/ContentList.qml b/modules/launcher/ContentList.qml index 9c10077..5edabaa 100644 --- a/modules/launcher/ContentList.qml +++ b/modules/launcher/ContentList.qml @@ -32,7 +32,7 @@ Item { PropertyChanges { root.currentList: appList.item root.implicitWidth: Config.launcher.sizes.itemWidth - root.implicitHeight: Math.max(empty.implicitHeight, appList.implicitHeight) + root.implicitHeight: appList.implicitHeight > 0 ? appList.implicitHeight : empty.implicitHeight appList.active: true } -- cgit v1.2.3-freya