From 81cc440f4734c9e4f157450a396caa407a02a98d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jonas=20=C3=85dahl?= Date: Sat, 28 May 2022 23:44:16 +0200 Subject: [PATCH] window/x11: Minor coding style cleanup Break up a long somewhat unreadable line. Part-of: --- src/x11/window-x11.c | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/x11/window-x11.c b/src/x11/window-x11.c index 0c528c17a..4e5ab9340 100644 --- a/src/x11/window-x11.c +++ b/src/x11/window-x11.c @@ -3601,7 +3601,11 @@ is_our_xwindow (MetaX11Display *x11_display, } /* Any windows created via meta_create_offscreen_window */ - if (attrs->override_redirect && attrs->x == -100 && attrs->y == -100 && attrs->width == 1 && attrs->height == 1) + if (attrs->override_redirect && + attrs->x == -100 && + attrs->y == -100 && + attrs->width == 1 && + attrs->height == 1) return TRUE; return FALSE;