diff options
author | Harry Lu <harry.lu@sun.com> | 2003-12-05 09:59:43 +0800 |
---|---|---|
committer | Harry Lu <haip@src.gnome.org> | 2003-12-05 09:59:43 +0800 |
commit | 22f021924c1816eb5b958295e9dea290611c138d (patch) | |
tree | 6548c6dac843fcb7b9e18c5f2de0e449d846cdb8 /calendar/gui | |
parent | 999ef98d7640005b86cd958ed062ee1213008c49 (diff) | |
download | gsoc2013-evolution-22f021924c1816eb5b958295e9dea290611c138d.tar.gz gsoc2013-evolution-22f021924c1816eb5b958295e9dea290611c138d.tar.zst gsoc2013-evolution-22f021924c1816eb5b958295e9dea290611c138d.zip |
Fix for bugzilla bug #51627.
2003-12-04 Harry Lu <harry.lu@sun.com>
Fix for bugzilla bug #51627.
* gui/goto.c: (create_ecal): set calitem's move_selection_when_moving
to FALSE so that changing month and year won't send out
a "selection_changed" signal.
svn path=/trunk/; revision=23641
Diffstat (limited to 'calendar/gui')
-rw-r--r-- | calendar/gui/goto.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/calendar/gui/goto.c b/calendar/gui/goto.c index 83405ddc96..66c6ecbad4 100644 --- a/calendar/gui/goto.c +++ b/calendar/gui/goto.c @@ -138,6 +138,9 @@ create_ecal (GoToDialog *dlg) dlg->ecal = E_CALENDAR (e_calendar_new ()); calitem = dlg->ecal->calitem; + gnome_canvas_item_set (GNOME_CANVAS_ITEM (calitem), + "move_selection_when_moving", FALSE, + NULL); e_calendar_item_set_display_popup (calitem, FALSE); gtk_widget_show (GTK_WIDGET (dlg->ecal)); gtk_box_pack_start (GTK_BOX (dlg->vbox), GTK_WIDGET (dlg->ecal), TRUE, TRUE, 0); |