aboutsummaryrefslogtreecommitdiffstats
path: root/mail
diff options
context:
space:
mode:
Diffstat (limited to 'mail')
-rw-r--r--mail/ChangeLog3
-rw-r--r--mail/message-tag-followup.c1
2 files changed, 4 insertions, 0 deletions
diff --git a/mail/ChangeLog b/mail/ChangeLog
index c0f5cf76da..27028f7298 100644
--- a/mail/ChangeLog
+++ b/mail/ChangeLog
@@ -1,5 +1,8 @@
2002-08-02 Jeffrey Stedfast <fejj@ximian.com>
+ * message-tag-followup.c (construct): Set the default flag to
+ Follow-Up.
+
* mail-display.c (mail_display_render): Updated to use the new
Follow-Up tags. Instead of storing a string containing the
follow-up tag value, we now have to store the CamelMessageInfo.
diff --git a/mail/message-tag-followup.c b/mail/message-tag-followup.c
index 073fb484ab..4edbfc1d26 100644
--- a/mail/message-tag-followup.c
+++ b/mail/message-tag-followup.c
@@ -261,6 +261,7 @@ construct (MessageTagEditor *editor)
strings = g_list_append (strings, (char *) _(available_flags[i]));
gtk_combo_set_popdown_strings (followup->combo, strings);
g_list_free (strings);
+ gtk_list_select_item (GTK_LIST (followup->combo->list), DEFAULT_FLAG);
followup->target_date = E_DATE_EDIT (glade_xml_get_widget (gui, "target_date"));
e_date_edit_set_time (followup->target_date, (time_t) -1);