summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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 e0aa6c0c..519c3c78 100644
--- a/sway/tree/view.c
+++ b/sway/tree/view.c
@@ -302,7 +302,11 @@ void view_unmap(struct sway_view *view) {
302 view->swayc = NULL; 302 view->swayc = NULL;
303 view->surface = NULL; 303 view->surface = NULL;
304 304
305 arrange_children_of(parent); 305 if (parent->type == C_OUTPUT) {
306 arrange_output(parent);
307 } else {
308 arrange_children_of(parent);
309 }
306} 310}
307 311
308void view_update_position(struct sway_view *view, double ox, double oy) { 312void view_update_position(struct sway_view *view, double ox, double oy) {