1
0
Fork 0

window: Fix an if-block indentation

Part-of: <https://gitlab.gnome.org/GNOME/mutter/-/merge_requests/2884>
This commit is contained in:
Robert Mader 2023-03-03 14:40:07 +01:00 committed by Marge Bot
parent 9b7700b677
commit 92ac922519

View file

@ -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)
{