diff options
author | Mikkel Oscar Lyderik <mikkeloscar@gmail.com> | 2016-02-25 11:41:42 +0100 |
---|---|---|
committer | Mikkel Oscar Lyderik <mikkeloscar@gmail.com> | 2016-02-25 11:43:07 +0100 |
commit | 739ba902e0b05d5e891d35c19ef4d96605473571 (patch) | |
tree | d0a1bdd6295f2029ed1ea934f52eca7bb42095d7 /sway | |
parent | b107fc6e5a467b526e7d67ef09ca3b4044ab4976 (diff) |
Prevent crash when showing scratchpad on new ws.
Fix #469
Diffstat (limited to 'sway')
-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 1467a044..055473d5 100644 --- a/sway/commands.c +++ b/sway/commands.c @@ -672,8 +672,9 @@ static void hide_view_in_scratchpad(swayc_t *sp_view) { remove_child(sp_view); if (swayc_active_workspace() != ws && ws->floating->length == 0 && ws->children->length == 0) { destroy_workspace(ws); + } else { + arrange_windows(ws, -1, -1); } - arrange_windows(ws, -1, -1); set_focused_container(container_under_pointer()); } |