diff options
author | Drew DeVault <[email protected]> | 2015-08-09 20:49:19 -0400 |
---|---|---|
committer | Drew DeVault <[email protected]> | 2015-08-09 20:49:58 -0400 |
commit | 0078a6fa36d65704c55d426d022768e15b33a240 (patch) | |
tree | 666a30b5720eb704306d55daa5bfeb1be39f85ec /sway/commands.c | |
parent | b922e1cb29198c841d81090542d309e2be6f8ba9 (diff) |
Flesh out fullscreen support a bit
Diffstat (limited to 'sway/commands.c')
-rw-r--r-- | sway/commands.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sway/commands.c b/sway/commands.c index b7794087..cee8bf84 100644 --- a/sway/commands.c +++ b/sway/commands.c @@ -224,7 +224,8 @@ int cmd_fullscreen(struct sway_config *config, int argc, char **argv) { } swayc_t *container = get_focused_container(&root_container); - wlc_view_set_state(container->handle, WLC_BIT_FULLSCREEN, true); + bool current = (wlc_view_get_state(container->handle) & WLC_BIT_FULLSCREEN) > 0; + wlc_view_set_state(container->handle, WLC_BIT_FULLSCREEN, !current); arrange_windows(container, -1, -1); return 1; |