workspacesView: Increase secondary monitor workspace scale

The current value, 70%, may end up leaving too much unused space on
secondary monitors. The new value of 80% is completely based on trial
and error, but seems to work slightly better.

Closes https://gitlab.gnome.org/GNOME/gnome-shell/-/issues/3820

Part-of: <https://gitlab.gnome.org/GNOME/gnome-shell/-/merge_requests/1845>
This commit is contained in:
Georges Basile Stavracas Neto 2021-05-12 11:38:09 -03:00 committed by Marge Bot
parent 803b944ffd
commit a63c44ba2c

View File

@ -20,7 +20,7 @@ const WORKSPACE_MAX_SPACING = 80;
const WORKSPACE_INACTIVE_SCALE = 0.94;
const SECONDARY_WORKSPACE_SCALE = 0.70;
const SECONDARY_WORKSPACE_SCALE = 0.80;
var WorkspacesViewBase = GObject.registerClass({
GTypeFlags: GObject.TypeFlags.ABSTRACT,