workspace: Decrease spacing between workspaces in the window picker
Use a bit less spacing between the workspaces in the window picker, this uses more of the available space and makes it easy to take a peek at adjacent workspaces. Part-of: <https://gitlab.gnome.org/GNOME/gnome-shell/-/merge_requests/1702>
This commit is contained in:
parent
99378b6dae
commit
9b9be4a1a5
@ -231,7 +231,7 @@ class WorkspacesView extends WorkspacesViewBase {
|
|||||||
availableSpace = (width - workspaceSize) / 2;
|
availableSpace = (width - workspaceSize) / 2;
|
||||||
}
|
}
|
||||||
|
|
||||||
const spacing = (availableSpace - workspaceSize * 0.05) * (1 - fitMode);
|
const spacing = (availableSpace - workspaceSize * 0.4) * (1 - fitMode);
|
||||||
const { scaleFactor } = St.ThemeContext.get_for_stage(global.stage);
|
const { scaleFactor } = St.ThemeContext.get_for_stage(global.stage);
|
||||||
|
|
||||||
return Math.clamp(spacing, WORKSPACE_MIN_SPACING * scaleFactor,
|
return Math.clamp(spacing, WORKSPACE_MIN_SPACING * scaleFactor,
|
||||||
|
Loading…
Reference in New Issue
Block a user