forked from AuroraMiddleware/gtk
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:
parent
faf2d31864
commit
a1e39dc5f7
@ -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>
|
2005-07-13 Kristian Rietveld <kris@gtk.org>
|
||||||
|
|
||||||
* gtk/gtktreeview.c (gtk_tree_view_new_column_width): let's take
|
* gtk/gtktreeview.c (gtk_tree_view_new_column_width): let's take
|
||||||
|
@ -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>
|
2005-07-13 Kristian Rietveld <kris@gtk.org>
|
||||||
|
|
||||||
* gtk/gtktreeview.c (gtk_tree_view_new_column_width): let's take
|
* gtk/gtktreeview.c (gtk_tree_view_new_column_width): let's take
|
||||||
|
@ -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>
|
2005-07-13 Kristian Rietveld <kris@gtk.org>
|
||||||
|
|
||||||
* gtk/gtktreeview.c (gtk_tree_view_new_column_width): let's take
|
* gtk/gtktreeview.c (gtk_tree_view_new_column_width): let's take
|
||||||
|
@ -1256,7 +1256,7 @@ calendar_realize_arrows (GtkCalendar *calendar)
|
|||||||
attributes.x = rect.x;
|
attributes.x = rect.x;
|
||||||
attributes.y = rect.y;
|
attributes.y = rect.y;
|
||||||
attributes.width = rect.width;
|
attributes.width = rect.width;
|
||||||
attributes.height = rect.width;
|
attributes.height = rect.height;
|
||||||
priv->arrow_win[i] = gdk_window_new (priv->header_win,
|
priv->arrow_win[i] = gdk_window_new (priv->header_win,
|
||||||
&attributes,
|
&attributes,
|
||||||
attributes_mask);
|
attributes_mask);
|
||||||
|
Loading…
Reference in New Issue
Block a user