[gnome-shell/wip/fmuellner/ws-gesture-animations: 3/4] windowManager: Limit switch gestures to normal mode



commit 662520902eac04b9f966d388b4eafb5e9434f47d
Author: Florian Müllner <fmuellner gnome org>
Date:   Wed Mar 20 15:21:01 2019 +0000

    windowManager: Limit switch gestures to normal mode
    
    The window group is hidden while in overview, so the stick-to-content
    animation isn't visible either. Worse, the gestures messes up the
    position of window actors in that case. Just limit the gesture to
    normal mode for now, we will soon add it back in the overview with
    its own animation handling.
    
    https://gitlab.gnome.org/GNOME/gnome-shell/issues/516

 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 f8c3ba57e..907f58472 100644
--- a/js/ui/windowManager.js
+++ b/js/ui/windowManager.js
@@ -1053,7 +1053,7 @@ var WindowManager = class {
         global.workspace_manager.override_workspace_layout(Meta.DisplayCorner.TOPLEFT,
                                                            false, -1, 1);
 
-        let allowedModes = Shell.ActionMode.NORMAL | Shell.ActionMode.OVERVIEW;
+        let allowedModes = Shell.ActionMode.NORMAL;
         let gesture = new WorkspaceSwitchAction(allowedModes);
         gesture.connect('motion', this._switchWorkspaceMotion.bind(this));
         gesture.connect('activated', this._actionSwitchWorkspace.bind(this));


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]