From d623f94d7f9d69ce6622e1764f42cac15e6699eb Mon Sep 17 00:00:00 2001 From: Christopher James Lahey Date: Sun, 21 Jan 2001 05:49:00 +0000 Subject: Added draw-focus="true" and selection-mode="browse" attributes to the 2001-01-21 Christopher James Lahey * message-list.c (message_list_get_layout): Added draw-focus="true" and selection-mode="browse" attributes to the ETableSpecification. (message_list_construct): Removed setting the "draw_focus" argument since it doesn't exist any more. svn path=/trunk/; revision=7674 --- mail/ChangeLog | 8 ++++++++ mail/message-list.c | 5 +---- 2 files changed, 9 insertions(+), 4 deletions(-) diff --git a/mail/ChangeLog b/mail/ChangeLog index 64cbe1c166..3f40c4c23f 100644 --- a/mail/ChangeLog +++ b/mail/ChangeLog @@ -1,3 +1,11 @@ +2001-01-21 Christopher James Lahey + + * message-list.c (message_list_get_layout): Added + draw-focus="true" and selection-mode="browse" attributes to the + ETableSpecification. + (message_list_construct): Removed setting the "draw_focus" + argument since it doesn't exist any more. + 2001-01-21 Not Zed * mail-mt.c (mail_msg_new): Init a cancel field in the message. diff --git a/mail/message-list.c b/mail/message-list.c index 025d87c18d..9313206497 100644 --- a/mail/message-list.c +++ b/mail/message-list.c @@ -1116,7 +1116,7 @@ static char * message_list_get_layout (MessageList *message_list) { /* Default: Status, Attachments, Priority, From, Subject, Date */ - return g_strdup ("" + return g_strdup ("" "" "" "" @@ -1286,9 +1286,6 @@ message_list_construct (MessageList *message_list) g_free (spec); gtk_object_sink (GTK_OBJECT (extras)); - gtk_object_set (GTK_OBJECT (message_list->table), "drawfocus", - FALSE, NULL); - gtk_signal_connect (GTK_OBJECT (message_list->table), "cursor_change", GTK_SIGNAL_FUNC (on_cursor_change_cmd), message_list); -- cgit