aboutsummaryrefslogtreecommitdiffstats
path: root/mail/message-list.c
diff options
context:
space:
mode:
authorJeffrey Stedfast <fejj@src.gnome.org>2000-12-09 07:07:30 +0800
committerJeffrey Stedfast <fejj@src.gnome.org>2000-12-09 07:07:30 +0800
commit25ad3092eb60a6dcdbb810cf684ce6dc8715ac4c (patch)
tree5d9dcbce66a9547aa35a612c8a7a3939ccba43a6 /mail/message-list.c
parent1e42d3924323c25a89e980cc3f4434ca76a9c50e (diff)
downloadgsoc2013-evolution-25ad3092eb60a6dcdbb810cf684ce6dc8715ac4c.tar
gsoc2013-evolution-25ad3092eb60a6dcdbb810cf684ce6dc8715ac4c.tar.gz
gsoc2013-evolution-25ad3092eb60a6dcdbb810cf684ce6dc8715ac4c.tar.bz2
gsoc2013-evolution-25ad3092eb60a6dcdbb810cf684ce6dc8715ac4c.tar.lz
gsoc2013-evolution-25ad3092eb60a6dcdbb810cf684ce6dc8715ac4c.tar.xz
gsoc2013-evolution-25ad3092eb60a6dcdbb810cf684ce6dc8715ac4c.tar.zst
gsoc2013-evolution-25ad3092eb60a6dcdbb810cf684ce6dc8715ac4c.zip
a slight mixup in order causes "1.33 M" to be displayed as the subject...uh huh, yea...
svn path=/trunk/; revision=6877
Diffstat (limited to 'mail/message-list.c')
-rw-r--r--mail/message-list.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/mail/message-list.c b/mail/message-list.c
index 45e2682795..08d3bb7ba6 100644
--- a/mail/message-list.c
+++ b/mail/message-list.c
@@ -992,6 +992,10 @@ message_list_create_extras (void)
NULL);
e_table_extras_add_cell(extras, "render_text", cell);
+ e_table_extras_add_cell(extras, "render_tree",
+ e_cell_tree_new (NULL, NULL, /* let the tree renderer default the pixmaps */
+ TRUE, cell));
+
/* size cell */
cell = e_cell_text_new (NULL, GTK_JUSTIFY_RIGHT);
gtk_object_set (GTK_OBJECT (cell),
@@ -1002,10 +1006,6 @@ message_list_create_extras (void)
NULL);
e_table_extras_add_cell(extras, "render_size", cell);
- e_table_extras_add_cell(extras, "render_tree",
- e_cell_tree_new (NULL, NULL, /* let the tree renderer default the pixmaps */
- TRUE, cell));
-
return extras;
}