From: Jens Peters Date: Mon, 22 Jan 2024 22:52:33 +0000 (+0100) Subject: view: do not resize fullscreen windows X-Git-Url: https://git.mdlowis.com/?a=commitdiff_plain;h=3cdeaecb4b1403bed6961be3baff0dde7de597c4;p=proto%2Flabwc.git view: do not resize fullscreen windows --- 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; }