diff options
author | Tony Crisci <tony@dubstepdish.com> | 2018-03-30 16:53:27 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-03-30 16:53:27 -0400 |
commit | 5ac5e7d5a69e9d45a20d6d787a2665279845c74b (patch) | |
tree | d55cdd62bd7470ff67953613c25a3a9b85182f50 /include | |
parent | 7eca02301ba309fa909ba9b12cb335f8f944f1ee (diff) | |
parent | 7e0d430a0cee8c24fd4461711f264829b0f67e2e (diff) |
Merge pull request #1667 from emersion/wlroots-xwayland-map
Use the new map/unmap events for xwayland views
Diffstat (limited to 'include')
-rw-r--r-- | include/sway/tree/view.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/sway/tree/view.h b/include/sway/tree/view.h index e5f53f4e..54f6d90e 100644 --- a/include/sway/tree/view.h +++ b/include/sway/tree/view.h @@ -28,8 +28,8 @@ struct sway_xwayland_surface { struct wl_listener request_resize; struct wl_listener request_maximize; struct wl_listener request_configure; - struct wl_listener unmap_notify; - struct wl_listener map_notify; + struct wl_listener unmap; + struct wl_listener map; struct wl_listener destroy; int pending_width, pending_height; |