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:
Matthias Clasen 2005-07-13 17:24:02 +00:00 committed by Matthias Clasen
parent faf2d31864
commit a1e39dc5f7
4 changed files with 16 additions and 1 deletions

View 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

View 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

View 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

View 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);