summaryrefslogtreecommitdiff
path: root/sway/tree/view.c
diff options
context:
space:
mode:
authorTony Crisci <[email protected]>2018-04-02 22:37:21 -0400
committerTony Crisci <[email protected]>2018-04-02 22:37:21 -0400
commit2992b72d61933568476e2bf4baf573e714f9ed40 (patch)
tree0682e081d94d73ef2b4b9a7f8d1646c11bb33b8e /sway/tree/view.c
parent2c165e1288cbb60f5e677595e35f58a9c56c7010 (diff)
change reap container approach
Diffstat (limited to 'sway/tree/view.c')
-rw-r--r--sway/tree/view.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/sway/tree/view.c b/sway/tree/view.c
index 4e695b5f..eeadc5d8 100644
--- a/sway/tree/view.c
+++ b/sway/tree/view.c
@@ -78,14 +78,12 @@ void view_close(struct sway_view *view) {
}
}
-struct sway_container *container_view_destroy(struct sway_container *view) {
+void container_view_destroy(struct sway_container *view) {
if (!view) {
- return NULL;
+ return;
}
wlr_log(L_DEBUG, "Destroying view '%s'", view->name);
- struct sway_container *parent = container_destroy(view);
- arrange_windows(&root_container, -1, -1);
- return parent;
+ container_destroy(view);
}
void view_damage_whole(struct sway_view *view) {
@@ -164,6 +162,8 @@ void view_unmap(struct sway_view *view) {
view->swayc = NULL;
view->surface = NULL;
+
+ arrange_windows(&root_container, -1, -1);
}
void view_update_position(struct sway_view *view, double ox, double oy) {