diff options
author | Luminarys <kizunanohikari@gmail.com> | 2015-08-15 14:02:03 -0500 |
---|---|---|
committer | Luminarys <kizunanohikari@gmail.com> | 2015-08-15 14:02:03 -0500 |
commit | 9b0196e7ede3e91b8a4829f1f66990f4c588014b (patch) | |
tree | ad37457d7ffecd9b3a9101732c39d79e135fd0c8 /sway/workspace.c | |
parent | 618b3df0513dd2c63f6e64db1e125a609e1ec6b9 (diff) |
Style fixes
Diffstat (limited to 'sway/workspace.c')
-rw-r--r-- | sway/workspace.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/sway/workspace.c b/sway/workspace.c index 1f7aeb64..9748c23f 100644 --- a/sway/workspace.c +++ b/sway/workspace.c @@ -106,14 +106,11 @@ void workspace_switch(swayc_t *workspace) { // set all c_views in the old workspace to the invisible mask if the workspace // is in the same output & c_views in the new workspace to the visible mask - container_map(c_workspace, set_mask, &mask); mask = 2; container_map(workspace, set_mask, &mask); wlc_output_set_mask(wlc_get_focused_output(), 2); - - //wlc_output_set_mask(wlc_get_focused_output(), 2); unfocus_all(&root_container); focus_view(workspace); |