diff options
author | Drew DeVault <sir@cmpwn.com> | 2018-03-29 12:18:13 -0400 |
---|---|---|
committer | Drew DeVault <sir@cmpwn.com> | 2018-03-29 12:18:50 -0400 |
commit | b887af9a6013ea0466b6152e74f69659d7d45711 (patch) | |
tree | f6bffa0f7d120b5d4a085f17776d66fa2cdcd830 /include/rootston/output.h | |
parent | a316396eab8f865cbb4dc40300519de3ff3b9659 (diff) |
Fix maximized windows interaction with layer shell
If there were no layer surfaces the usable area of the output would be
an empty box.
Diffstat (limited to 'include/rootston/output.h')
-rw-r--r-- | include/rootston/output.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/rootston/output.h b/include/rootston/output.h index e40ad776..bf152038 100644 --- a/include/rootston/output.h +++ b/include/rootston/output.h @@ -23,6 +23,8 @@ struct roots_output { struct wlr_box usable_area; struct wl_listener destroy; + struct wl_listener mode; + struct wl_listener transform; struct wl_listener damage_frame; struct wl_listener damage_destroy; }; |