From 9c249d94860961c9a14b61bcc41daf0f5f902148 Mon Sep 17 00:00:00 2001 From: Jason Date: Fri, 23 Jan 2026 00:12:33 +0800 Subject: [PATCH] fix(ui): increase app icon collapse threshold from 3 to 4 Improve readability by keeping app names visible when 3 apps are shown. Icons now only collapse to compact mode when 4 or more apps are visible. --- src/App.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/App.tsx b/src/App.tsx index 789adf68a..cb870f01f 100644 --- a/src/App.tsx +++ b/src/App.tsx @@ -895,7 +895,7 @@ function App() { visibleApps={visibleApps} compact={ isCurrentAppTakeoverActive && - Object.values(visibleApps).filter(Boolean).length >= 3 + Object.values(visibleApps).filter(Boolean).length >= 4 } />