Fix segfault in view_unmap()

If the last remaining view on a workspace is unmapped and the workspace
is not visible, parent will be a C_OUTPUT. Call the arrange_output()
function in this case.
This commit is contained in:
Ryan Dwyer 2018-05-01 17:18:20 +10:00
parent b84dfa794c
commit 91f97fc21a
1 changed files with 5 additions and 1 deletions

View File

@ -302,7 +302,11 @@ void view_unmap(struct sway_view *view) {
view->swayc = NULL;
view->surface = NULL;
arrange_children_of(parent);
if (parent->type == C_OUTPUT) {
arrange_output(parent);
} else {
arrange_children_of(parent);
}
}
void view_update_position(struct sway_view *view, double ox, double oy) {