From e33d3d574aab65fac90a8bbf73b47c297905e517 Mon Sep 17 00:00:00 2001 From: kossLAN Date: Thu, 16 Oct 2025 23:14:27 -0400 Subject: [PATCH] fix: get rid of slightly jank looking resize logic --- shell/launcher/Controller.qml | 10 +--------- 1 file changed, 1 insertion(+), 9 deletions(-) diff --git a/shell/launcher/Controller.qml b/shell/launcher/Controller.qml index e08f04a..e56f366 100644 --- a/shell/launcher/Controller.qml +++ b/shell/launcher/Controller.qml @@ -120,8 +120,7 @@ Singleton { ListView { id: list - visible: opacity > 0 - opacity: matchesLength != 0 ? 1 : 0 + visible: Layout.preferredHeight > 1 clip: true cacheBuffer: 0 // works around QTBUG-131106 //reuseItems: true @@ -129,13 +128,6 @@ Singleton { Layout.fillWidth: true Layout.preferredHeight: Math.min(matchesLength * delegateHeight, 500) - Behavior on opacity { - NumberAnimation { - duration: 200 - easing.type: Easing.OutCubic - } - } - Behavior on Layout.preferredHeight { NumberAnimation { duration: 200