sway

i3-compatible Wayland compositor
git clone https://git.awy.one/sway
Log | Files | Refs | README | LICENSE

commit f76f9e2eea15ee4606c23139e9a4c8ce41a4ab18
parent 2093d4ddee49af09b865d7b866598645ae7d7018
Author: taiyu <taiyu.len@gmail.com>
Date:   Sat, 12 Sep 2015 02:52:18 -0700

visible values

Diffstat:
Minclude/container.h | 4++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git 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;