diff options
author | Christopher James Lahey <clahey@ximian.com> | 2001-10-05 21:30:13 +0800 |
---|---|---|
committer | Chris Lahey <clahey@src.gnome.org> | 2001-10-05 21:30:13 +0800 |
commit | 0209a694470a6e87a1ed6113a8521749b5da35e8 (patch) | |
tree | 36b90c09dda7ca7be6d344f36830bdef6df49c9e | |
parent | 81d731c0f4704cf73775f17c0bf3a07e835cbc4d (diff) | |
download | gsoc2013-evolution-0209a694470a6e87a1ed6113a8521749b5da35e8.tar.gz gsoc2013-evolution-0209a694470a6e87a1ed6113a8521749b5da35e8.tar.zst gsoc2013-evolution-0209a694470a6e87a1ed6113a8521749b5da35e8.zip |
Turn on "uniform_row_height" argument.
2001-10-05 Christopher James Lahey <clahey@ximian.com>
* message-list.c (message_list_setup_etree): Turn on
"uniform_row_height" argument.
svn path=/trunk/; revision=13442
-rw-r--r-- | mail/ChangeLog | 5 | ||||
-rw-r--r-- | mail/message-list.c | 4 |
2 files changed, 9 insertions, 0 deletions
diff --git a/mail/ChangeLog b/mail/ChangeLog index 9020f531d7..aabcb43384 100644 --- a/mail/ChangeLog +++ b/mail/ChangeLog @@ -1,3 +1,8 @@ +2001-10-05 Christopher James Lahey <clahey@ximian.com> + + * message-list.c (message_list_setup_etree): Turn on + "uniform_row_height" argument. + 2001-10-04 <NotZed@Ximian.com> * folder-browser.c (update_status_bar): Show "nn sent" as total in diff --git a/mail/message-list.c b/mail/message-list.c index f78e4beb99..695e1b7f17 100644 --- a/mail/message-list.c +++ b/mail/message-list.c @@ -1053,6 +1053,10 @@ message_list_setup_etree (MessageList *message_list, gboolean outgoing) char *path; char *name; struct stat st; + + gtk_object_set (GTK_OBJECT (message_list->tree), + "uniform_row_height", TRUE, + NULL); name = camel_service_get_name (CAMEL_SERVICE (message_list->folder->parent_store), TRUE); d(printf ("folder name is '%s'\n", name)); |