From 5df5b009271acc4981e66c85316901a7be705851 Mon Sep 17 00:00:00 2001 From: Rui Matos Date: Mon, 26 Sep 2016 17:06:12 +0200 Subject: [PATCH] Revert "wayland: Mark pending moved as moved" This reverts commit 989ec7fc60d534a8167535795de141590be406bb. We now rely on accurately knowing if a window moved and/or resized in meta_window_move_resize_internal() so the wayland implementation can't lie any longer. https://bugzilla.gnome.org/show_bug.cgi?id=770345 --- src/wayland/meta-window-wayland.c | 1 - 1 file changed, 1 deletion(-) diff --git a/src/wayland/meta-window-wayland.c b/src/wayland/meta-window-wayland.c index 1e77692e9..1527bcf06 100644 --- a/src/wayland/meta-window-wayland.c +++ b/src/wayland/meta-window-wayland.c @@ -312,7 +312,6 @@ meta_window_wayland_move_resize_internal (MetaWindow *window, if (new_x != window->rect.x || new_y != window->rect.y) { - *result |= META_MOVE_RESIZE_RESULT_MOVED; wl_window->has_pending_move = TRUE; wl_window->pending_move_x = new_x; wl_window->pending_move_y = new_y;