window/x11: Minor coding style cleanup

Break up a long somewhat unreadable line.

Part-of: <https://gitlab.gnome.org/GNOME/mutter/-/merge_requests/2619>
This commit is contained in:
Jonas Ådahl 2022-05-28 23:44:16 +02:00 committed by Marge Bot
parent b9c3e2b01e
commit 81cc440f47

View File

@ -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;