diff options
author | Matthias Clasen <mclasen@redhat.com> | 2006-01-11 03:48:27 +0000 |
---|---|---|
committer | Matthias Clasen <matthiasc@src.gnome.org> | 2006-01-11 03:48:27 +0000 |
commit | 4da4ca3103b05e1bc6981fe7c1cf592b9a19a4e2 (patch) | |
tree | e51b91346ec612889f67b31d4016f2639dbe5940 /gtk/gtkcalendar.c | |
parent | 0a314300cf52d68b9b2c527dfadf2154f1318f49 (diff) | |
download | gtk+-4da4ca3103b05e1bc6981fe7c1cf592b9a19a4e2.tar.gz |
Queue a draw when losing the focus. (#326064, Andrew Conkling)
2006-01-10 Matthias Clasen <mclasen@redhat.com>
* gtk/gtkcalendar.c (gtk_calendar_focus_out): Queue a draw
when losing the focus. (#326064, Andrew Conkling)
Diffstat (limited to 'gtk/gtkcalendar.c')
-rw-r--r-- | gtk/gtkcalendar.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/gtk/gtkcalendar.c b/gtk/gtkcalendar.c index 253155d72b..566d7ba88a 100644 --- a/gtk/gtkcalendar.c +++ b/gtk/gtkcalendar.c @@ -2907,6 +2907,8 @@ gtk_calendar_focus_out (GtkWidget *widget, { GtkCalendarPrivate *priv = GTK_CALENDAR_GET_PRIVATE (widget); + gtk_widget_queue_draw (widget); + calendar_stop_spinning (GTK_CALENDAR (widget)); priv->in_drag = 0; |