[mutter] window/x11: Minor coding style cleanup



commit 81cc440f4734c9e4f157450a396caa407a02a98d
Author: Jonas Ã…dahl <jadahl gmail com>
Date:   Sat May 28 23:44:16 2022 +0200

    window/x11: Minor coding style cleanup
    
    Break up a long somewhat unreadable line.
    
    Part-of: <https://gitlab.gnome.org/GNOME/mutter/-/merge_requests/2619>

 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 0c528c17a5..4e5ab93406 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;


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]