From 64ba1fbb1b00d3d70906fa1ed45b98aebf113171 Mon Sep 17 00:00:00 2001 From: bbedward Date: Thu, 16 Jul 2026 10:50:39 -0400 Subject: [PATCH] launcher: fix sticky header appearance without blur port 1.5 (cherry picked from commit 6c45413d7ada921d8dcc4509716784ce19593cd9) --- quickshell/Modals/DankLauncherV2/ResultsList.qml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/quickshell/Modals/DankLauncherV2/ResultsList.qml b/quickshell/Modals/DankLauncherV2/ResultsList.qml index 2c9f0a49d..23eef04fe 100644 --- a/quickshell/Modals/DankLauncherV2/ResultsList.qml +++ b/quickshell/Modals/DankLauncherV2/ResultsList.qml @@ -214,7 +214,7 @@ Item { Item { id: listClip anchors.fill: parent - anchors.topMargin: BlurService.enabled && stickyHeader.visible ? 32 : 0 + anchors.topMargin: stickyHeader.visible ? 32 : 0 anchors.bottomMargin: bottomSectionHeader.visible ? bottomSectionHeader.height : 0 clip: true @@ -417,7 +417,7 @@ Item { anchors.top: parent.top height: 32 z: 101 - color: BlurService.enabled ? "transparent" : Theme.floatingSurface + color: "transparent" visible: !root._bottomSectionHeaderActive && stickyHeaderSection !== null readonly property int versionTrigger: root.controller?.viewModeVersion ?? 0