[gnome-shell] windowManager: Change unfullscreen mode to NORMAL
- From: Marge Bot <marge-bot src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gnome-shell] windowManager: Change unfullscreen mode to NORMAL
- Date: Sun, 13 Mar 2022 00:05:20 +0000 (UTC)
commit 4bc195e79714f1c6787e05728a62e25b5b353040
Author: Ivan Molodetskikh <yalterz gmail com>
Date: Sun Mar 6 15:03:29 2022 +0300
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>
js/ui/windowManager.js | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
---
diff --git a/js/ui/windowManager.js b/js/ui/windowManager.js
index cdd32dcf5c..bd47e6e5d5 100644
--- a/js/ui/windowManager.js
+++ b/js/ui/windowManager.js
@@ -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;
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]