diff options
author | Tony Crisci <tony@dubstepdish.com> | 2018-05-28 13:12:53 -0400 |
---|---|---|
committer | Tony Crisci <tony@dubstepdish.com> | 2018-05-28 13:12:53 -0400 |
commit | 044fa52be48ff47abe6df0e5e77761f7b0598110 (patch) | |
tree | de15e9b07d6adfc2dd215c8de15b6d611b6a700e | |
parent | c27cd5f065140355d900fd40c9093464b14352bb (diff) |
reword new_surface docs
-rw-r--r-- | include/wlr/types/wlr_xdg_shell.h | 5 | ||||
-rw-r--r-- | include/wlr/types/wlr_xdg_shell_v6.h | 5 |
2 files changed, 4 insertions, 6 deletions
diff --git a/include/wlr/types/wlr_xdg_shell.h b/include/wlr/types/wlr_xdg_shell.h index 8b9980ad..5eb30a16 100644 --- a/include/wlr/types/wlr_xdg_shell.h +++ b/include/wlr/types/wlr_xdg_shell.h @@ -17,9 +17,8 @@ struct wlr_xdg_shell { /** * The `new_surface` event signals that a client has requested to * create a new shell surface. At this point, the surface is ready to - * be configured but not ready to be managed by the compositor by - * adding it to a list of views. The surface will be ready to be - * managed on the `map` event. + * be configured but is not mapped or ready receive input events. The + * surface will be ready to be managed on the `map` event. */ struct wl_signal new_surface; } events; diff --git a/include/wlr/types/wlr_xdg_shell_v6.h b/include/wlr/types/wlr_xdg_shell_v6.h index 34bf77b1..2fdf49e5 100644 --- a/include/wlr/types/wlr_xdg_shell_v6.h +++ b/include/wlr/types/wlr_xdg_shell_v6.h @@ -18,9 +18,8 @@ struct wlr_xdg_shell_v6 { /** * The `new_surface` event signals that a client has requested to * create a new shell surface. At this point, the surface is ready to - * be configured but not ready to be managed by the compositor by - * adding it to a list of views. The surface will be ready to be - * managed on the `map` event. + * be configured but is not mapped or ready receive input events. The + * surface will be ready to be managed on the `map` event. */ struct wl_signal new_surface; } events; |