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:
minus 2015-08-25 20:13:35 +02:00
parent e533014201
commit ca89ba83a8
4 changed files with 14 additions and 16 deletions

View file

@ -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