1
1
mirror of https://github.com/swaywm/sway synced 2024-09-30 04:51:18 +02:00

visible values

This commit is contained in:
taiyu 2015-09-12 02:52:18 -07:00
parent 2093d4ddee
commit f76f9e2eea

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