From 2adab13971baa11b24d52c2ce2991ba39b08ad37 Mon Sep 17 00:00:00 2001 From: Christopher James Lahey Date: Thu, 12 Oct 2000 04:57:05 +0000 Subject: Replace To with From except in Drafts, Outbox, or Sent boxes. Make Subject 2000-10-12 Christopher James Lahey * message-list.c: Replace To with From except in Drafts, Outbox, or Sent boxes. Make Subject column pay attention to text attributes like bold and strikethrough. svn path=/trunk/; revision=5877 --- mail/ChangeLog | 6 ++++++ mail/message-list.c | 8 ++++---- 2 files changed, 10 insertions(+), 4 deletions(-) (limited to 'mail') diff --git a/mail/ChangeLog b/mail/ChangeLog index 7be9134e1b..0c2b5591d1 100644 --- a/mail/ChangeLog +++ b/mail/ChangeLog @@ -1,3 +1,9 @@ +2000-10-12 Christopher James Lahey + + * message-list.c: Replace To with From except in Drafts, Outbox, + or Sent boxes. Make Subject column pay attention to text + attributes like bold and strikethrough. + 2000-10-12 Iain Holmes * component-factory.c: Disable the executive summary. diff --git a/mail/message-list.c b/mail/message-list.c index c7e0c3e571..2305a8d47a 100644 --- a/mail/message-list.c +++ b/mail/message-list.c @@ -857,7 +857,7 @@ message_list_get_layout (MessageList *message_list) "" "" "" - "" + "" "" "" "" @@ -890,9 +890,9 @@ message_list_setup_etable(MessageList *message_list) /* I wonder if there's a better way to do this ...? */ name = camel_service_get_name((CAMEL_SERVICE(message_list->folder->parent_store)), TRUE); printf("folder name is '%s'\n", name); - if (strstr(name, "/Drafts") == 0 - || strstr(name, "/Outbox") == 0 - || strstr(name, "/Sent") == 0) { + if (strstr(name, "/Drafts") + || strstr(name, "/Outbox") + || strstr(name, "/Sent")) { e_table_scrolled_set_state(E_TABLE_SCROLLED(message_list->etable), state); } g_free(name); -- cgit v1.2.3