aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--mail/ChangeLog6
-rw-r--r--mail/message-list.c9
2 files changed, 8 insertions, 7 deletions
diff --git a/mail/ChangeLog b/mail/ChangeLog
index 4a0edf188e..e93799d43e 100644
--- a/mail/ChangeLog
+++ b/mail/ChangeLog
@@ -1,3 +1,9 @@
+2000-10-02 Chris Toshok <toshok@helixcode.com>
+
+ * message-list.c (message_list_init_renderers): remove the 2 tree
+ pixbufs, so adjust the offsets to the score pixbufs. also, pass
+ NULL for the open/closed pixbufs to the tree cell renderer.
+
2000-10-02 Dan Winship <danw@helixcode.com>
* mail-ops.c (mail_do_scan_subfolders, etc): Update for
diff --git a/mail/message-list.c b/mail/message-list.c
index 87846302ec..74aecdb7fd 100644
--- a/mail/message-list.c
+++ b/mail/message-list.c
@@ -44,8 +44,6 @@
#include "art/mail-replied.xpm"
#include "art/attachment.xpm"
#include "art/empty.xpm"
-#include "art/tree-expanded.xpm"
-#include "art/tree-unexpanded.xpm"
#include "art/score-lowest.xpm"
#include "art/score-lower.xpm"
#include "art/score-low.xpm"
@@ -99,8 +97,6 @@ static struct {
{ mail_replied_xpm, NULL },
{ empty_xpm, NULL },
{ attachment_xpm, NULL },
- { tree_expanded_xpm, NULL },
- { tree_unexpanded_xpm, NULL },
{ score_lowest_xpm, NULL },
{ score_lower_xpm, NULL },
{ score_low_xpm, NULL },
@@ -909,7 +905,7 @@ message_list_init_renderers (MessageList *message_list)
* Miguel has suggested perhaps using icons with thumbs up/down
*/
for (i = 0; i < 7; i++)
- images[i] = states_pixmaps [i + 7].pixbuf;
+ images[i] = states_pixmaps [i + 5].pixbuf;
message_list->render_score = e_cell_toggle_new (0, 7, images);
@@ -918,8 +914,7 @@ message_list_init_renderers (MessageList *message_list)
*/
message_list->render_tree =
e_cell_tree_new (message_list->table_model,
- states_pixmaps[5].pixbuf,
- states_pixmaps[6].pixbuf,
+ NULL, NULL, /* let the tree renderer default the pixmaps */
TRUE, message_list->render_text);
}