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.
This commit is contained in:
Jason
2026-01-23 00:12:33 +08:00
parent 15f60e8ce2
commit 9c249d9486

View File

@@ -895,7 +895,7 @@ function App() {
visibleApps={visibleApps}
compact={
isCurrentAppTakeoverActive &&
Object.values(visibleApps).filter(Boolean).length >= 3
Object.values(visibleApps).filter(Boolean).length >= 4
}
/>