diff options
author | Kirill Primak <vyivel@eclair.cafe> | 2022-01-08 22:52:58 +0300 |
---|---|---|
committer | Kirill Primak <vyivel@eclair.cafe> | 2022-02-02 21:06:12 +0300 |
commit | 6ed3b02775e7f3622ffb1376480366ab76498b97 (patch) | |
tree | ee52a0b564c698d0911091c75701598f48c55f8a /include | |
parent | 34a71eae313f55840e728500f7594fee4468226f (diff) |
xdg-toplevel: fix `requested` doc
`requested` is also checked on state change requests.
Diffstat (limited to 'include')
-rw-r--r-- | include/wlr/types/wlr_xdg_shell.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/wlr/types/wlr_xdg_shell.h b/include/wlr/types/wlr_xdg_shell.h index 4fcd6dd4..d4a9f62b 100644 --- a/include/wlr/types/wlr_xdg_shell.h +++ b/include/wlr/types/wlr_xdg_shell.h @@ -134,8 +134,8 @@ struct wlr_xdg_toplevel { struct wlr_xdg_toplevel_configure scheduled; // Properties that the client has requested. Intended to be checked - // by the compositor on surface map and handled accordingly - // (e.g. a client might want to start already in a fullscreen state). + // by the compositor on surface map and state change requests (such as + // xdg_toplevel::set_fullscreen) and handled accordingly. struct wlr_xdg_toplevel_requested requested; char *title; |