From d889aad7cf76f786208c446ce195d4e26f9c0a8d Mon Sep 17 00:00:00 2001 From: John Wudrick Date: Fri, 4 Nov 2022 02:35:12 +0000 Subject: window: Update ongoing edge resistance flags with input Fix a recent regression where edge resistance flags where no longer updated during the move/resize operation. Fixes: bd6b14a843 (window: Throttle window move grab updates) Closes: https://gitlab.gnome.org/GNOME/mutter/-/issues/2492 Part-of: --- src/core/window.c | 2 ++ 1 file changed, 2 insertions(+) (limited to 'src/core/window.c') diff --git a/src/core/window.c b/src/core/window.c index d37601716..3b35ee021 100644 --- a/src/core/window.c +++ b/src/core/window.c @@ -6021,6 +6021,7 @@ queue_update_move (MetaWindow *window, MetaCompositor *compositor; MetaLaters *laters; + window->display->grab_last_edge_resistance_flags = flags; window->display->grab_latest_motion_x = x; window->display->grab_latest_motion_y = y; @@ -6166,6 +6167,7 @@ queue_update_resize (MetaWindow *window, MetaCompositor *compositor; MetaLaters *laters; + window->display->grab_last_edge_resistance_flags = flags; window->display->grab_latest_motion_x = x; window->display->grab_latest_motion_y = y; -- cgit v1.2.1