mirror of
https://github.com/swaywm/sway.git
synced 2025-11-02 09:01:40 -05:00
changed view visibility to be bool
view_visibility enum remains with one constant that is the mask to wlc's view masking
This commit is contained in:
parent
e533014201
commit
ca89ba83a8
4 changed files with 14 additions and 16 deletions
|
|
@ -56,9 +56,8 @@ struct sway_container {
|
|||
struct sway_container *focused;
|
||||
};
|
||||
|
||||
enum view_visibility {
|
||||
INVISIBLE = 1,
|
||||
VISIBLE = 2
|
||||
enum visibility_mask {
|
||||
VISIBLE = 1
|
||||
};
|
||||
|
||||
// Container Creation
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue