mirror of
https://github.com/swaywm/sway.git
synced 2024-11-05 16:03:11 +00:00
Merge pull request #1876 from RyanDwyer/view-unmap-segfault
Fix segfault in view_unmap()
This commit is contained in:
commit
bf0603cd2d
|
@ -302,7 +302,11 @@ void view_unmap(struct sway_view *view) {
|
||||||
view->swayc = NULL;
|
view->swayc = NULL;
|
||||||
view->surface = NULL;
|
view->surface = NULL;
|
||||||
|
|
||||||
|
if (parent->type == C_OUTPUT) {
|
||||||
|
arrange_output(parent);
|
||||||
|
} else {
|
||||||
arrange_children_of(parent);
|
arrange_children_of(parent);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
void view_update_position(struct sway_view *view, double ox, double oy) {
|
void view_update_position(struct sway_view *view, double ox, double oy) {
|
||||||
|
|
Loading…
Reference in a new issue