From 6eba49609d4cc7ad3420a709b161cc0de90cde16 Mon Sep 17 00:00:00 2001 From: reionwong Date: Sun, 30 Aug 2026 02:08:29 -0400 Subject: [PATCH] fix(launcher): bound list view cache buffer --- qml/AllAppsView.qml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/qml/AllAppsView.qml b/qml/AllAppsView.qml index 01bf1d9..20ef684 100644 --- a/qml/AllAppsView.qml +++ b/qml/AllAppsView.qml @@ -54,7 +54,9 @@ ListView { highlightRangeMode: ListView.StrictlyEnforceRange highlightFollowsCurrentItem: true - cacheBuffer: control.width * control.count + // Keep one extra page ready without tying the cache size to the model + // count, which can trigger a binding loop while the view is resizing. + cacheBuffer: control.width boundsBehavior: Flickable.DragOverBounds currentIndex: -1 clip: true