diff options
author | Timidger <APragmaticPlace@gmail.com> | 2019-10-03 16:06:46 -0400 |
---|---|---|
committer | Drew DeVault <sir@cmpwn.com> | 2019-10-16 09:41:13 -0400 |
commit | 1724261910728bfa63eecb0f1729995c00c7ffe8 (patch) | |
tree | 24eab18a6dc5a44ba407ba2ba56eb78576b5a92d /include/wlr | |
parent | 6bb7639a0f35317cc8f29034577710c2387ebcd1 (diff) |
layer_shell: set layer of existing surface
Diffstat (limited to 'include/wlr')
-rw-r--r-- | include/wlr/types/wlr_layer_shell_v1.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/wlr/types/wlr_layer_shell_v1.h b/include/wlr/types/wlr_layer_shell_v1.h index 9613621a..588da650 100644 --- a/include/wlr/types/wlr_layer_shell_v1.h +++ b/include/wlr/types/wlr_layer_shell_v1.h @@ -54,6 +54,7 @@ struct wlr_layer_surface_v1_state { bool keyboard_interactive; uint32_t desired_width, desired_height; uint32_t actual_width, actual_height; + enum zwlr_layer_shell_v1_layer layer; }; struct wlr_layer_surface_v1_configure { @@ -71,7 +72,6 @@ struct wlr_layer_surface_v1 { struct wl_list popups; // wlr_xdg_popup::link char *namespace; - enum zwlr_layer_shell_v1_layer layer; bool added, configured, mapped, closed; uint32_t configure_serial; |