From e982a87be82722a33cebc62164c33ef5aa89a1f0 Mon Sep 17 00:00:00 2001 From: Carlos Garnacho Date: Thu, 14 Dec 2006 13:16:47 +0000 Subject: [PATCH] draw arrows pointing to the right correctly placed inside their GdkWindow. 2006-12-14 Carlos Garnacho * gtk/gtkcalendar.c: draw arrows pointing to the right correctly placed inside their GdkWindow. Bug #385672. --- ChangeLog | 5 +++++ gtk/gtkcalendar.c | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 9d08cf4cc8..d7a7f19208 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2006-12-14 Carlos Garnacho + + * gtk/gtkcalendar.c: draw arrows pointing to the right correctly + placed inside their GdkWindow. Bug #385672. + 2006-12-14 Amitakhya Phukan * configure.in: Added 'as' in ALL_LINGUAS diff --git a/gtk/gtkcalendar.c b/gtk/gtkcalendar.c index 3ed1f3e7e7..3336a2c631 100644 --- a/gtk/gtkcalendar.c +++ b/gtk/gtkcalendar.c @@ -2334,7 +2334,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); } }