diff options
author | Matthias Clasen <mclasen@redhat.com> | 2005-07-13 17:24:02 +0000 |
---|---|---|
committer | Matthias Clasen <matthiasc@src.gnome.org> | 2005-07-13 17:24:02 +0000 |
commit | a1e39dc5f79c1c36287a5f4edfac2c2c3cb055dc (patch) | |
tree | ce9b8e4ebcc4d685cf6119d7991b841245b8abd7 /gtk/gtkcalendar.c | |
parent | faf2d31864d3c7541a5519e5012a8d664ef58d41 (diff) | |
download | gtk+-a1e39dc5f79c1c36287a5f4edfac2c2c3cb055dc.tar.gz |
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)
Diffstat (limited to 'gtk/gtkcalendar.c')
-rw-r--r-- | gtk/gtkcalendar.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gtk/gtkcalendar.c b/gtk/gtkcalendar.c index 239aabc5e2..60dd69fe2c 100644 --- a/gtk/gtkcalendar.c +++ b/gtk/gtkcalendar.c @@ -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); |