diff options
author | emersion <contact@emersion.fr> | 2018-03-13 22:05:35 +0100 |
---|---|---|
committer | emersion <contact@emersion.fr> | 2018-03-13 22:05:35 +0100 |
commit | 657e5c8c0d162958f96c45069767acfa56075843 (patch) | |
tree | 5f137f7f01edebd4a19f13c8be32ba744ea27554 /include | |
parent | e74ddaaf10f1c8078cf078f55428b9e86776ca93 (diff) |
xdg-shell-v6: changed wlr_xdg_surface_v6_configure.toplevel_state to be NULL if surface isn't a toplevel
Diffstat (limited to 'include')
-rw-r--r-- | include/wlr/types/wlr_xdg_shell_v6.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/wlr/types/wlr_xdg_shell_v6.h b/include/wlr/types/wlr_xdg_shell_v6.h index 86a42181..9140fa64 100644 --- a/include/wlr/types/wlr_xdg_shell_v6.h +++ b/include/wlr/types/wlr_xdg_shell_v6.h @@ -82,7 +82,7 @@ struct wlr_xdg_surface_v6_configure { struct wl_list link; // wlr_xdg_surface_v6::configure_list uint32_t serial; - struct wlr_xdg_toplevel_v6_state toplevel_state; // TODO: should be null-able + struct wlr_xdg_toplevel_v6_state *toplevel_state; }; struct wlr_xdg_surface_v6 { |