aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--river/View.zig3
1 files changed, 2 insertions, 1 deletions
diff --git a/river/View.zig b/river/View.zig
index e6f2d2a..2154829 100644
--- a/river/View.zig
+++ b/river/View.zig
@@ -373,7 +373,8 @@ pub fn unmap(self: *Self) void {
self.output.sendViewTags();
- if (!self.current.float and !self.current.fullscreen) root.arrange();
+ // Still need to arrange if fullscreened from the layout
+ if (!self.current.float) root.arrange();
}
/// Destory the view and free the ViewStack node holding it.