diff options
author | minus <[email protected]> | 2015-08-25 20:13:35 +0200 |
---|---|---|
committer | minus <[email protected]> | 2015-08-25 20:13:35 +0200 |
commit | ca89ba83a8adf392ba3409f18d3af2545d69b034 (patch) | |
tree | 9b94c93270737625c17bde12669b67bd14385577 /sway/handlers.c | |
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 'sway/handlers.c')
-rw-r--r-- | sway/handlers.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sway/handlers.c b/sway/handlers.c index 8b3ae3c1..af68b765 100644 --- a/sway/handlers.c +++ b/sway/handlers.c @@ -90,7 +90,7 @@ swayc_t *container_under_pointer(void) { static bool handle_output_created(wlc_handle output) { swayc_t *op = new_output(output); - // Visibilty mask to be able to make view invisible + // Visibility mask to be able to make view invisible wlc_output_set_mask(output, VISIBLE); if (!op) { |