diff options
author | taiyu <taiyu.len@gmail.com> | 2015-09-12 02:52:18 -0700 |
---|---|---|
committer | taiyu <taiyu.len@gmail.com> | 2015-09-12 02:52:18 -0700 |
commit | f76f9e2eea15ee4606c23139e9a4c8ce41a4ab18 (patch) | |
tree | bb5eccfddb8b8d56e387327908490daeca2c42a7 | |
parent | 2093d4ddee49af09b865d7b866598645ae7d7018 (diff) |
visible values
-rw-r--r-- | include/container.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/container.h b/include/container.h index d8590149..b164af95 100644 --- a/include/container.h +++ b/include/container.h @@ -37,8 +37,8 @@ struct sway_container { int desired_width, desired_height; enum visibility_mask { - INVISIBLE = 0, - VISIBLE = 1, + INVISIBLE = false, + VISIBLE = true, } visible; bool is_floating; |