window: Move move_resize_wayland to window-wayland.c

The move/resize logic is still busted for top/left resizes... sigh.
This commit is contained in:
Jasper St. Pierre
2014-04-28 17:44:45 -04:00
parent 9b760dbbab
commit 8461b2c910
5 changed files with 61 additions and 60 deletions

View File

@@ -51,6 +51,7 @@
#include "meta-cursor-tracker-private.h"
#include "display-private.h"
#include "window-private.h"
#include "window-wayland.h"
#include <meta/types.h>
#include <meta/main.h>
#include "frame.h"
@@ -182,7 +183,7 @@ toplevel_surface_commit (MetaWaylandSurface *surface,
new_height != window->rect.height ||
pending->dx != 0 ||
pending->dy != 0)
meta_window_move_resize_wayland (window, new_width, new_height, pending->dx, pending->dy);
meta_window_wayland_move_resize (window, new_width, new_height, pending->dx, pending->dy);
}
}