diff options
Diffstat (limited to 'include')
-rw-r--r-- | include/rootston/seat.h | 1 | ||||
-rw-r--r-- | include/wlr/types/wlr_data_device.h | 3 |
2 files changed, 3 insertions, 1 deletions
diff --git a/include/rootston/seat.h b/include/rootston/seat.h index 7b09f339..0e3043dd 100644 --- a/include/rootston/seat.h +++ b/include/rootston/seat.h @@ -59,6 +59,7 @@ struct roots_drag_icon { struct wl_listener surface_commit; struct wl_listener map; + struct wl_listener unmap; struct wl_listener destroy; }; diff --git a/include/wlr/types/wlr_data_device.h b/include/wlr/types/wlr_data_device.h index 5581373d..4de4d610 100644 --- a/include/wlr/types/wlr_data_device.h +++ b/include/wlr/types/wlr_data_device.h @@ -88,7 +88,8 @@ struct wlr_drag_icon { int32_t sx, sy; struct { - struct wl_signal map; // emitted when mapped or unmapped + struct wl_signal map; + struct wl_signal unmap; struct wl_signal destroy; } events; |