diff options
author | Drew DeVault <sir@cmpwn.com> | 2017-09-30 09:12:20 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-09-30 09:12:20 -0400 |
commit | 40303b7a09e52bffbef1ea9cb8120da85c7d185c (patch) | |
tree | d800059d64b9886fba549b96780e6dce806a1342 /rootston/xwayland.c | |
parent | edf5e6211d07d7b8f35e8dabd4d97303743e3c7c (diff) | |
parent | 74f2d0cd63131ab782c309270241bcbf0e47db12 (diff) |
Merge pull request #175 from emersion/xdg-shell-resize
rootston: add xdg shell resize support
Diffstat (limited to 'rootston/xwayland.c')
-rw-r--r-- | rootston/xwayland.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/rootston/xwayland.c b/rootston/xwayland.c index 181b959d..4e42a925 100644 --- a/rootston/xwayland.c +++ b/rootston/xwayland.c @@ -17,7 +17,7 @@ static void handle_destroy(struct wl_listener *listener, void *data) { free(roots_surface); } -static void handle_configure(struct wl_listener *listener, void *data) { +static void handle_request_configure(struct wl_listener *listener, void *data) { struct roots_xwayland_surface *roots_surface = wl_container_of(listener, roots_surface, request_configure); struct wlr_xwayland_surface *xwayland_surface = @@ -58,7 +58,7 @@ void handle_xwayland_surface(struct wl_listener *listener, void *data) { roots_surface->destroy.notify = handle_destroy; wl_signal_add(&surface->events.destroy, &roots_surface->destroy); wl_list_init(&roots_surface->request_configure.link); - roots_surface->request_configure.notify = handle_configure; + roots_surface->request_configure.notify = handle_request_configure; wl_signal_add(&surface->events.request_configure, &roots_surface->request_configure); |