diff --git a/gsk/gskroundedrect.c b/gsk/gskroundedrect.c index 03f987e964..c381e47911 100644 --- a/gsk/gskroundedrect.c +++ b/gsk/gskroundedrect.c @@ -118,8 +118,8 @@ gsk_rounded_rect_init (GskRoundedRect *self, * * Initializes @self using the given @src rectangle. * - * This function will implicitly normalize the #GskRoundedRect - * before returning. + * This function will not normalize the #GskRoundedRect, so + * make sure the source is normalized. * * Returns: (transfer none): the initialized rectangle * @@ -131,8 +131,6 @@ gsk_rounded_rect_init_copy (GskRoundedRect *self, { *self = *src; - gsk_rounded_rect_normalize_in_place (self); - return self; }