diff options
author | Kirill Primak <vyivel@eclair.cafe> | 2023-10-09 22:06:39 +0300 |
---|---|---|
committer | Alexander Orzechowski <alex@ozal.ski> | 2023-10-09 19:29:28 +0000 |
commit | 078540e086c8dd80905dc95e8dcb6ab05ad52030 (patch) | |
tree | f8d021c8e3fa2a1a845bea941059292cf53b6a56 | |
parent | 65f6f556d93907acb604b79ffba96777cde0dc54 (diff) |
xdg-shell: fix wlr_xdg_popup_destroy() docs
-rw-r--r-- | include/wlr/types/wlr_xdg_shell.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/include/wlr/types/wlr_xdg_shell.h b/include/wlr/types/wlr_xdg_shell.h index a67f32ac..536cd90b 100644 --- a/include/wlr/types/wlr_xdg_shell.h +++ b/include/wlr/types/wlr_xdg_shell.h @@ -421,8 +421,9 @@ bool wlr_xdg_toplevel_set_parent(struct wlr_xdg_toplevel *toplevel, struct wlr_xdg_toplevel *parent); /** - * Request that this popup closes. - **/ + * Notify the client that the popup has been dismissed and destroy the + * struct wlr_xdg_popup, rendering the resource inert. + */ void wlr_xdg_popup_destroy(struct wlr_xdg_popup *popup); /** |