diff --git a/Commons/Style.qml b/Commons/Style.qml index fe8a919..c8607f7 100644 --- a/Commons/Style.qml +++ b/Commons/Style.qml @@ -88,7 +88,7 @@ Singleton { } property real capsuleHeight: { if (Settings.data.bar.density === "compact") { - return barHeight * 0.95 + return barHeight * 0.85 } if (Settings.data.bar.density === "default") { return barHeight * 0.82 diff --git a/Modules/Bar/Widgets/Workspace.qml b/Modules/Bar/Widgets/Workspace.qml index 1aff33d..973aa8c 100644 --- a/Modules/Bar/Widgets/Workspace.qml +++ b/Modules/Bar/Widgets/Workspace.qml @@ -86,7 +86,7 @@ Item { } total += Math.max(localWorkspaces.count - 1, 0) * spacingBetweenPills total += horizontalPadding * 2 - return total + return Math.round(total) } function computeHeight() { @@ -97,7 +97,7 @@ Item { } total += Math.max(localWorkspaces.count - 1, 0) * spacingBetweenPills total += horizontalPadding * 2 - return total + return Math.round(total) } Component.onCompleted: {