mirror of
https://github.com/brl/mutter.git
synced 2024-11-22 08:00:42 -05:00
window-x11: Clean up formatting a bit more
This commit is contained in:
parent
e97ca325e6
commit
e3001794f2
@ -487,14 +487,8 @@ meta_window_apply_session_info (MetaWindow *window,
|
|||||||
|
|
||||||
flags = META_IS_MOVE_ACTION | META_IS_RESIZE_ACTION;
|
flags = META_IS_MOVE_ACTION | META_IS_RESIZE_ACTION;
|
||||||
|
|
||||||
adjust_for_gravity (window,
|
adjust_for_gravity (window, FALSE, gravity, &rect);
|
||||||
FALSE,
|
meta_window_move_resize_internal (window, flags, gravity,
|
||||||
gravity,
|
|
||||||
&rect);
|
|
||||||
|
|
||||||
meta_window_move_resize_internal (window,
|
|
||||||
flags,
|
|
||||||
gravity,
|
|
||||||
rect.x, rect.y, rect.width, rect.height);
|
rect.x, rect.y, rect.width, rect.height);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -549,14 +543,8 @@ meta_window_x11_manage (MetaWindow *window)
|
|||||||
rect.width = window->size_hints.width;
|
rect.width = window->size_hints.width;
|
||||||
rect.height = window->size_hints.height;
|
rect.height = window->size_hints.height;
|
||||||
|
|
||||||
adjust_for_gravity (window,
|
adjust_for_gravity (window, TRUE, gravity, &rect);
|
||||||
TRUE,
|
meta_window_move_resize_internal (window, flags, gravity,
|
||||||
gravity,
|
|
||||||
&rect);
|
|
||||||
|
|
||||||
meta_window_move_resize_internal (window,
|
|
||||||
flags,
|
|
||||||
gravity,
|
|
||||||
rect.x, rect.y, rect.width, rect.height);
|
rect.x, rect.y, rect.width, rect.height);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -2090,14 +2078,8 @@ meta_window_move_resize_request (MetaWindow *window,
|
|||||||
rect.width = width;
|
rect.width = width;
|
||||||
rect.height = height;
|
rect.height = height;
|
||||||
|
|
||||||
adjust_for_gravity (window,
|
adjust_for_gravity (window, TRUE, gravity, &rect);
|
||||||
TRUE,
|
meta_window_move_resize_internal (window, flags, gravity,
|
||||||
gravity,
|
|
||||||
&rect);
|
|
||||||
|
|
||||||
meta_window_move_resize_internal (window,
|
|
||||||
flags,
|
|
||||||
gravity,
|
|
||||||
rect.x, rect.y, rect.width, rect.height);
|
rect.x, rect.y, rect.width, rect.height);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user