diff options
author | Arturo Espinosa <unammx@src.gnome.org> | 1998-05-09 08:04:08 +0800 |
---|---|---|
committer | Arturo Espinosa <unammx@src.gnome.org> | 1998-05-09 08:04:08 +0800 |
commit | a9b1af2b26c0be96173149078b4e98b2b1d3aac2 (patch) | |
tree | 457f1242ed55d2503a3e8cca55c35e597fa0bd2d /calendar/gui/gnome-cal.c | |
parent | ca6dd05c600cfbaf6c9b16059b2377932463ea0d (diff) | |
download | gsoc2013-evolution-a9b1af2b26c0be96173149078b4e98b2b1d3aac2.tar gsoc2013-evolution-a9b1af2b26c0be96173149078b4e98b2b1d3aac2.tar.gz gsoc2013-evolution-a9b1af2b26c0be96173149078b4e98b2b1d3aac2.tar.bz2 gsoc2013-evolution-a9b1af2b26c0be96173149078b4e98b2b1d3aac2.tar.lz gsoc2013-evolution-a9b1af2b26c0be96173149078b4e98b2b1d3aac2.tar.xz gsoc2013-evolution-a9b1af2b26c0be96173149078b4e98b2b1d3aac2.tar.zst gsoc2013-evolution-a9b1af2b26c0be96173149078b4e98b2b1d3aac2.zip |
1. Fix: `New Appointment' defaults to the current day. 2. Add `New
1. Fix: `New Appointment' defaults to the current day.
2. Add `New appointment today' entry.
3. Use the new freeze/thaw changes to avoid the extensive flicker.
Miguel.
svn path=/trunk/; revision=209
Diffstat (limited to 'calendar/gui/gnome-cal.c')
-rw-r--r-- | calendar/gui/gnome-cal.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/calendar/gui/gnome-cal.c b/calendar/gui/gnome-cal.c index e4312e9341..5db24e9828 100644 --- a/calendar/gui/gnome-cal.c +++ b/calendar/gui/gnome-cal.c @@ -377,6 +377,8 @@ gnome_calendar_tag_calendar (GnomeCalendar *cal, GtkCalendar *gtk_cal) tm.tm_mon++; month_end = mktime (&tm); + gtk_calendar_freeze (gtk_cal); gtk_calendar_clear_marks (gtk_cal); calendar_iterate (cal->cal, month_begin, month_end, mark_gtk_calendar_day, gtk_cal); + gtk_calendar_thaw (gtk_cal); } |