diff options
author | Drew DeVault <sir@cmpwn.com> | 2018-03-29 12:19:20 -0400 |
---|---|---|
committer | Drew DeVault <sir@cmpwn.com> | 2018-03-29 22:11:08 -0400 |
commit | a76829f3756d3df22fe46e6688374497de29c2e1 (patch) | |
tree | 2dc57796bf9975dacd3de8913cfe97d0c8fa981d /include | |
parent | 531c175d3e60bf9dbfd538af1fd5eebb906c6f91 (diff) |
Some layer shell fixes
Based on the corresponding rootston changes
Diffstat (limited to 'include')
-rw-r--r-- | include/sway/layers.h | 2 | ||||
-rw-r--r-- | include/sway/output.h | 1 |
2 files changed, 1 insertions, 2 deletions
diff --git a/include/sway/layers.h b/include/sway/layers.h index 22054be1..ee47c5ad 100644 --- a/include/sway/layers.h +++ b/include/sway/layers.h @@ -14,8 +14,6 @@ struct sway_layer_surface { struct wl_listener unmap; struct wl_listener surface_commit; struct wl_listener output_destroy; - struct wl_listener output_mode; - struct wl_listener output_transform; bool configured; struct wlr_box geo; diff --git a/include/sway/output.h b/include/sway/output.h index f899230f..6fb79987 100644 --- a/include/sway/output.h +++ b/include/sway/output.h @@ -21,6 +21,7 @@ struct sway_output { struct wl_listener frame; struct wl_listener destroy; struct wl_listener mode; + struct wl_listener transform; pid_t bg_pid; }; |