windowManager: Change unfullscreen mode to NORMAL
The unfullscreen action doesn't make sense in other modes. In the overview in particular it also prevents clicking on the top bar items on a workspace with a fullscreen client. Part-of: <https://gitlab.gnome.org/GNOME/gnome-shell/-/merge_requests/2227>
This commit is contained in:
parent
ffc2e09a1e
commit
4bc195e797
@ -941,7 +941,7 @@ var WindowManager = class {
|
||||
appSwitchAction.connect('activated', this._switchApp.bind(this));
|
||||
global.stage.add_action_full('app-switch', Clutter.EventPhase.CAPTURE, appSwitchAction);
|
||||
|
||||
let mode = Shell.ActionMode.ALL & ~Shell.ActionMode.LOCK_SCREEN;
|
||||
let mode = Shell.ActionMode.NORMAL;
|
||||
let topDragAction = new EdgeDragAction.EdgeDragAction(St.Side.TOP, mode);
|
||||
topDragAction.connect('activated', () => {
|
||||
let currentWindow = global.display.focus_window;
|
||||
|
Loading…
Reference in New Issue
Block a user