diff options
author | minus <minus@mnus.de> | 2015-08-25 20:13:35 +0200 |
---|---|---|
committer | minus <minus@mnus.de> | 2015-08-25 20:13:35 +0200 |
commit | ca89ba83a8adf392ba3409f18d3af2545d69b034 (patch) | |
tree | 9b94c93270737625c17bde12669b67bd14385577 /include/container.h | |
parent | e533014201475648df24c1c74dbf04de65a9d16c (diff) |
changed view visibility to be bool
view_visibility enum remains with one constant that is the mask to wlc's view masking
Diffstat (limited to 'include/container.h')
-rw-r--r-- | include/container.h | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/include/container.h b/include/container.h index f684129a..798a31a2 100644 --- a/include/container.h +++ b/include/container.h @@ -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 |