diff options
author | Suman Manjunath <msuman@novell.com> | 2007-10-12 16:56:01 +0800 |
---|---|---|
committer | Milan Crha <mcrha@src.gnome.org> | 2007-10-12 16:56:01 +0800 |
commit | be9273d7bab214c49479b4cc96f0a2ffe26ce019 (patch) | |
tree | 21ed4cb871b543c1d132305f000f973ecd3a8921 /calendar/gui | |
parent | fdf180115313501a0de25b558b8c774ce3c31e0e (diff) | |
download | gsoc2013-evolution-be9273d7bab214c49479b4cc96f0a2ffe26ce019.tar.gz gsoc2013-evolution-be9273d7bab214c49479b4cc96f0a2ffe26ce019.tar.zst gsoc2013-evolution-be9273d7bab214c49479b4cc96f0a2ffe26ce019.zip |
** Fix for bug #466659
2007-10-12 Suman Manjunath <msuman@novell.com>
** Fix for bug #466659
* gui/e-cal-list-view.c: (setup_e_table): Do not allow the user to set
a 'no-date' for start/end of appointments in list view.
svn path=/trunk/; revision=34382
Diffstat (limited to 'calendar/gui')
-rw-r--r-- | calendar/gui/e-cal-list-view.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/calendar/gui/e-cal-list-view.c b/calendar/gui/e-cal-list-view.c index dfdce41ff8..7d67db489f 100644 --- a/calendar/gui/e-cal-list-view.c +++ b/calendar/gui/e-cal-list-view.c @@ -235,7 +235,7 @@ setup_e_table (ECalListView *cal_list_view) e_table_extras_add_cell (extras, "dateedit", popup_cell); cal_list_view->dates_cell = E_CELL_DATE_EDIT (popup_cell); - gtk_widget_set_sensitive (E_CELL_DATE_EDIT (popup_cell)->none_button, FALSE); + gtk_widget_hide (E_CELL_DATE_EDIT (popup_cell)->none_button); e_cell_date_edit_set_get_time_callback (E_CELL_DATE_EDIT (popup_cell), get_current_time_cb, |