]> Pileus Git - ~andy/gtk/commitdiff
Fix an unintentional case of width-for-height... (#310133, Luis Villa)
authorMatthias Clasen <mclasen@redhat.com>
Wed, 13 Jul 2005 17:24:02 +0000 (17:24 +0000)
committerMatthias Clasen <matthiasc@src.gnome.org>
Wed, 13 Jul 2005 17:24:02 +0000 (17:24 +0000)
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)

ChangeLog
ChangeLog.pre-2-10
ChangeLog.pre-2-8
gtk/gtkcalendar.c

index 6e9be2485985b9a023710a3112b637e26d52d1f0..4aa0de7622769966fb81ba7ad731fbe792044df9 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+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)
+
 2005-07-13  Kristian Rietveld  <kris@gtk.org>
 
        * gtk/gtktreeview.c (gtk_tree_view_new_column_width): let's take
index 6e9be2485985b9a023710a3112b637e26d52d1f0..4aa0de7622769966fb81ba7ad731fbe792044df9 100644 (file)
@@ -1,3 +1,8 @@
+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)
+
 2005-07-13  Kristian Rietveld  <kris@gtk.org>
 
        * gtk/gtktreeview.c (gtk_tree_view_new_column_width): let's take
index 6e9be2485985b9a023710a3112b637e26d52d1f0..4aa0de7622769966fb81ba7ad731fbe792044df9 100644 (file)
@@ -1,3 +1,8 @@
+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)
+
 2005-07-13  Kristian Rietveld  <kris@gtk.org>
 
        * gtk/gtktreeview.c (gtk_tree_view_new_column_width): let's take
index 239aabc5e29fe7a77c2fd232bfb5df537701e675..60dd69fe2cdbfbcaac2b5cc16f6e0e7a40b84b54 100644 (file)
@@ -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);