xdg-shell: Drop edges arg from xdg_surface configure event

This commit is contained in:
Kristian Høgsberg
2014-02-05 21:36:04 -08:00
parent ab39f4db0f
commit 44cd1968f2
3 changed files with 18 additions and 7 deletions
+1 -3
View File
@@ -3851,12 +3851,10 @@ handle_surface_ping(void *data, struct xdg_surface *xdg_surface, uint32_t serial
static void
handle_surface_configure(void *data, struct xdg_surface *xdg_surface,
uint32_t edges, int32_t width, int32_t height)
int32_t width, int32_t height)
{
struct window *window = data;
window->resize_edges = edges;
window_schedule_resize(window, width, height);
}