Fix typo in GtkAspectFrame.yalign accessor

Copy-paste error.

Fixes: #6273
This commit is contained in:
Emmanuele Bassi 2023-12-18 19:03:53 +00:00
parent 9166e90bd4
commit ad4f2de86c

View File

@ -414,7 +414,7 @@ gtk_aspect_frame_get_yalign (GtkAspectFrame *self)
{
g_return_val_if_fail (GTK_IS_ASPECT_FRAME (self), 0.5);
return self->xalign;
return self->yalign;
}
/**