mirror of
https://gitlab.gnome.org/GNOME/gtk.git
synced 2024-11-05 16:20:10 +00:00
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>
|
||||
|
||||
* 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>
|
||||
|
||||
* 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>
|
||||
|
||||
* 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.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);
|
||||
|
Loading…
Reference in New Issue
Block a user