gtk/window: Minor cleanup

This commit is contained in:
Jonas Ådahl 2020-12-02 16:44:59 +01:00
parent ca65ee8d50
commit b8fa892b70

View File

@ -4303,8 +4303,6 @@ toplevel_compute_size (GdkToplevel *toplevel,
gtk_window_get_remembered_size (window, &width, &height);
}
get_shadow_width (window, &shadow);
/* Don't ever request zero width or height, it's not supported by
gdk. The size allocation code will round it to 1 anyway but if
we do it then the value returned from this function will is
@ -4312,7 +4310,6 @@ toplevel_compute_size (GdkToplevel *toplevel,
width = MAX (width, 1);
height = MAX (height, 1);
gtk_window_update_csd_size (window,
&min_width, &min_height,
INCLUDE_CSD_SIZE);
@ -4325,6 +4322,7 @@ toplevel_compute_size (GdkToplevel *toplevel,
if (priv->use_client_shadow)
{
get_shadow_width (window, &shadow);
gdk_toplevel_size_set_margin (size,
shadow.left, shadow.right,
shadow.top, shadow.bottom);