summaryrefslogtreecommitdiff
path: root/modules/launcher/ContentList.qml
diff options
context:
space:
mode:
Diffstat (limited to 'modules/launcher/ContentList.qml')
-rw-r--r--modules/launcher/ContentList.qml2
1 files changed, 1 insertions, 1 deletions
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
}