From 3cdeaecb4b1403bed6961be3baff0dde7de597c4 Mon Sep 17 00:00:00 2001 From: Jens Peters Date: Mon, 22 Jan 2024 23:52:33 +0100 Subject: [PATCH] view: do not resize fullscreen windows --- src/view.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/view.c b/src/view.c index 48493187..b3f5c904 100644 --- a/src/view.c +++ b/src/view.c @@ -747,7 +747,7 @@ view_place_initial(struct view *view, bool allow_cursor) void view_constrain_size_to_that_of_usable_area(struct view *view) { - if (!view || !view->output) { + if (!view || !view->output || view->fullscreen) { return; }