feat(dock): static dock frame indicator sizing with launcher icon

This commit is contained in:
tibssy
2026-02-20 00:39:59 +00:00
parent 8eef8ef71d
commit c192d248e0
+2 -1
View File
@@ -101,7 +101,8 @@ Loader {
return hidden;
}
readonly property int frameIndicatorLength: {
const count = dockApps.length;
const launcherCount = Settings.data.dock.showLauncherIcon ? 1 : 0;
const count = dockApps.length + launcherCount;
if (count <= 0)
return 0;
const spacing = Style.marginS;