diff options
author | Carlos Garnacho <carlosg@gnome.org> | 2006-12-14 13:15:13 +0000 |
---|---|---|
committer | Carlos Garnacho <carlosg@src.gnome.org> | 2006-12-14 13:15:13 +0000 |
commit | ace4545931879a473905c89c0da6fe1905692a32 (patch) | |
tree | eed0d8f2ac2ceb2be3d261fc9644eaa74fe26246 /gtk/gtkcalendar.c | |
parent | d80a2fe41fcf811952092974a7cd99ad8af67101 (diff) | |
download | gtk+-ace4545931879a473905c89c0da6fe1905692a32.tar.gz |
draw arrows pointing to the right correctly placed inside their GdkWindow.
2006-12-14 Carlos Garnacho <carlosg@gnome.org>
* gtk/gtkcalendar.c: draw arrows pointing to the right correctly
placed inside their GdkWindow. Bug #385672.
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 9197706908..ca862424f4 100644 --- a/gtk/gtkcalendar.c +++ b/gtk/gtkcalendar.c @@ -2299,7 +2299,7 @@ calendar_paint_arrow (GtkCalendar *calendar, gtk_paint_arrow (widget->style, window, state, GTK_SHADOW_OUT, NULL, widget, "calendar", GTK_ARROW_RIGHT, TRUE, - width/2 - 2, height/2 - 4, 8, 8); + width/2 - 4, height/2 - 4, 8, 8); } } |