From d8bf3bdfe8e4ea9ddafbebb23714efca30dff099 Mon Sep 17 00:00:00 2001 From: Body <79547183+Bodify@users.noreply.github.com> Date: Thu, 30 Apr 2026 17:45:46 +0200 Subject: [PATCH] processes: fix list gaps and overlap when searching (#2315) --- quickshell/Modules/ProcessList/ProcessesView.qml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/quickshell/Modules/ProcessList/ProcessesView.qml b/quickshell/Modules/ProcessList/ProcessesView.qml index 181cf15a..c175da4e 100644 --- a/quickshell/Modules/ProcessList/ProcessesView.qml +++ b/quickshell/Modules/ProcessList/ProcessesView.qml @@ -301,10 +301,10 @@ Item { clip: true spacing: 2 - add: root.searchText.length > 0 ? ListViewTransitions.add : null - remove: root.searchText.length > 0 ? ListViewTransitions.remove : null - displaced: root.searchText.length > 0 ? ListViewTransitions.displaced : null - move: root.searchText.length > 0 ? ListViewTransitions.move : null + add: null + remove: null + displaced: null + move: null model: ScriptModel { values: root.cachedProcesses