diff options
author | Drew DeVault <[email protected]> | 2015-08-19 19:30:26 -0400 |
---|---|---|
committer | Drew DeVault <[email protected]> | 2015-08-19 19:30:26 -0400 |
commit | 057d2e529d5cb22722b68aad759bdf0a48af6f20 (patch) | |
tree | 82ab38635b0207d99b53d8a2168865681d1babbd /sway/handlers.c | |
parent | 74c9df0c0798bb9fcc6f616e393a9edb01f3d0cb (diff) | |
parent | f85d0740a83c32f9ef4d7f73b3dd25cff3a6239a (diff) |
Merge pull request #92 from z33ky/master
A couple of cppcheck issues
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 a6dbf94c..0bb181cc 100644 --- a/sway/handlers.c +++ b/sway/handlers.c @@ -290,8 +290,8 @@ static void handle_view_state_request(wlc_handle view, enum wlc_view_state_bit s // i3 just lets it become fullscreen wlc_view_set_state(view, state, toggle); c = get_swayc_for_handle(view, &root_container); - sway_log(L_DEBUG, "setting view %ld %s, fullscreen %d", view, c->name, toggle); if (c) { + sway_log(L_DEBUG, "setting view %ld %s, fullscreen %d", view, c->name, toggle); arrange_windows(c->parent, -1, -1); // Set it as focused window for that workspace if its going fullscreen if (toggle) { |