aboutsummaryrefslogtreecommitdiff
path: root/sway/tree
diff options
context:
space:
mode:
Diffstat (limited to 'sway/tree')
-rw-r--r--sway/tree/view.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/sway/tree/view.c b/sway/tree/view.c
index 80949c89..05a9b277 100644
--- a/sway/tree/view.c
+++ b/sway/tree/view.c
@@ -346,7 +346,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) {