Fix an unintentional case of width-for-height... (#310133, Luis Villa)
2005-07-13 Matthias Clasen <mclasen@redhat.com> * gtk/gtkcalendar.c (calendar_realize_arrows): Fix an unintentional case of width-for-height... (#310133, Luis Villa)
This commit is contained in:
committed by
Matthias Clasen
parent
faf2d31864
commit
a1e39dc5f7
@ -1256,7 +1256,7 @@ calendar_realize_arrows (GtkCalendar *calendar)
|
||||
attributes.x = rect.x;
|
||||
attributes.y = rect.y;
|
||||
attributes.width = rect.width;
|
||||
attributes.height = rect.width;
|
||||
attributes.height = rect.height;
|
||||
priv->arrow_win[i] = gdk_window_new (priv->header_win,
|
||||
&attributes,
|
||||
attributes_mask);
|
||||
|
||||
Reference in New Issue
Block a user