Merge pull request #1876 from RyanDwyer/view-unmap-segfault

Fix segfault in view_unmap()
master
emersion 7 years ago committed by GitHub
commit bf0603cd2d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -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) {

Loading…
Cancel
Save