1
0
mirror of https://github.com/AvengeMedia/DankMaterialShell.git synced 2026-01-31 08:52:49 -05:00

workspaces: fix overflow with grouped apps + icons

fixes #1530
This commit is contained in:
bbedward
2026-01-28 16:00:44 -05:00
parent 75fd62865b
commit f00854879c

View File

@@ -914,7 +914,7 @@ Item {
}
}
return SettingsData.groupWorkspaceApps ? groupedCount : totalCount;
return (SettingsData.groupWorkspaceApps && !isActive) ? groupedCount : totalCount;
}
readonly property real baseWidth: root.isVertical ? (SettingsData.showWorkspaceApps ? Math.max(widgetHeight * 0.7, root.appIconSize + Theme.spacingXS * 2) : widgetHeight * 0.5) : (isActive ? root.widgetHeight * 1.05 : root.widgetHeight * 0.7)