From 92ac922519d9b530fd38e0e1bbd93efb6cadeada Mon Sep 17 00:00:00 2001 From: Robert Mader Date: Fri, 3 Mar 2023 14:40:07 +0100 Subject: [PATCH] window: Fix an if-block indentation Part-of: --- src/core/window.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/core/window.c b/src/core/window.c index 7c72565ac..68d744a0a 100644 --- a/src/core/window.c +++ b/src/core/window.c @@ -2648,15 +2648,15 @@ meta_window_maximize (MetaWindow *window, /* if the window hasn't been placed yet, we'll maximize it then */ if (!window->placed) - { - window->maximize_horizontally_after_placement = + { + window->maximize_horizontally_after_placement = window->maximize_horizontally_after_placement || maximize_horizontally; - window->maximize_vertically_after_placement = + window->maximize_vertically_after_placement = window->maximize_vertically_after_placement || maximize_vertically; - return; - } + return; + } if (window->tile_mode != META_TILE_NONE) {