diff options
author | Federico Mena Quintero <federico@ximian.com> | 2001-08-02 11:40:17 +0800 |
---|---|---|
committer | Federico Mena Quintero <federico@src.gnome.org> | 2001-08-02 11:40:17 +0800 |
commit | ef025c689be33a54883b5e8b77e58916d1c8002d (patch) | |
tree | 8abbb29457c28208bfa599c444bcb82b92fafba7 /calendar/gui/e-tasks.c | |
parent | 342880e798defc90709e5e7cf97f89be71eab188 (diff) | |
download | gsoc2013-evolution-ef025c689be33a54883b5e8b77e58916d1c8002d.tar.gz gsoc2013-evolution-ef025c689be33a54883b5e8b77e58916d1c8002d.tar.zst gsoc2013-evolution-ef025c689be33a54883b5e8b77e58916d1c8002d.zip |
If the default category is the same as the value passed in to this
2001-08-01 Federico Mena Quintero <federico@ximian.com>
* gui/calendar-model.c (calendar_model_value_is_empty): If the
default category is the same as the value passed in to this
function, return TRUE. This could be a hack or not, but it
prevents two items from being added to the table if a category is
selected.
* gui/e-tasks.c (setup_widgets): Allow the search bar to shrink
horizontally.
* gui/dialogs/task-page.c (clear_widgets): Pass valid values to
e_dialog_option_menu_set(); these need to come from the status map.
svn path=/trunk/; revision=11565
Diffstat (limited to 'calendar/gui/e-tasks.c')
-rw-r--r-- | calendar/gui/e-tasks.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/calendar/gui/e-tasks.c b/calendar/gui/e-tasks.c index 9ea9bc6e2d..ab59d80273 100644 --- a/calendar/gui/e-tasks.c +++ b/calendar/gui/e-tasks.c @@ -197,7 +197,7 @@ setup_widgets (ETasks *tasks) GTK_SIGNAL_FUNC (search_bar_category_changed_cb), tasks); gtk_table_attach (GTK_TABLE (tasks), priv->search_bar, 0, 1, 0, 1, - GTK_EXPAND | GTK_FILL, 0, 0, 0); + GTK_EXPAND | GTK_FILL | GTK_SHRINK, 0, 0, 0); gtk_widget_show (priv->search_bar); priv->tasks_view = e_calendar_table_new (); |