[gnome-shell] windowManager: Change unfullscreen mode to NORMAL



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]