aboutsummaryrefslogtreecommitdiff
path: root/sway
diff options
context:
space:
mode:
Diffstat (limited to 'sway')
-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) {
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) {