diff options
author | Tony Crisci <tony@dubstepdish.com> | 2017-10-10 10:28:43 -0400 |
---|---|---|
committer | Tony Crisci <tony@dubstepdish.com> | 2017-10-10 10:28:43 -0400 |
commit | 1b2742d0b2debeeb783e1a15ef9bb92c633506be (patch) | |
tree | 8d11677f45743dd2db40800dc02a8b5c10ba41e0 /include/wlr | |
parent | fe3c6c929be467b3e1ec860c94c9524a6686bd61 (diff) |
bug: emit surface new event later
Diffstat (limited to 'include/wlr')
-rw-r--r-- | include/wlr/types/wlr_wl_shell.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/wlr/types/wlr_wl_shell.h b/include/wlr/types/wlr_wl_shell.h index 6133b80d..e768d9d5 100644 --- a/include/wlr/types/wlr_wl_shell.h +++ b/include/wlr/types/wlr_wl_shell.h @@ -51,6 +51,7 @@ struct wlr_wl_shell_surface { struct wl_client *client; struct wl_resource *resource; struct wlr_surface *surface; + bool configured; struct wl_list link; uint32_t ping_serial; @@ -65,6 +66,7 @@ struct wlr_wl_shell_surface { char *class; struct wl_listener surface_destroy_listener; + struct wl_listener surface_commit_listener; struct wlr_wl_shell_surface *parent; struct wl_list child_link; |