aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRodney Dawes <dobey@ximian.com>2003-12-06 06:56:10 +0800
committerRodney Dawes <dobey@src.gnome.org>2003-12-06 06:56:10 +0800
commitd53559db709aaaa40d68de79de2c7df61c2b3968 (patch)
treea14ca2e6f169762de353e033d8fd98d48ad72d6b
parenta3a13cabde5949348f1cdc02f645909540070500 (diff)
downloadgsoc2013-evolution-d53559db709aaaa40d68de79de2c7df61c2b3968.tar
gsoc2013-evolution-d53559db709aaaa40d68de79de2c7df61c2b3968.tar.gz
gsoc2013-evolution-d53559db709aaaa40d68de79de2c7df61c2b3968.tar.bz2
gsoc2013-evolution-d53559db709aaaa40d68de79de2c7df61c2b3968.tar.lz
gsoc2013-evolution-d53559db709aaaa40d68de79de2c7df61c2b3968.tar.xz
gsoc2013-evolution-d53559db709aaaa40d68de79de2c7df61c2b3968.tar.zst
gsoc2013-evolution-d53559db709aaaa40d68de79de2c7df61c2b3968.zip
Remove the extra || unread check in the conditional in the g_object_set ()
2003-12-05 Rodney Dawes <dobey@ximian.com> * em-folder-tree.c (render_display_name): Remove the extra || unread check in the conditional in the g_object_set () call svn path=/trunk/; revision=23657
-rw-r--r--mail/ChangeLog5
-rw-r--r--mail/em-folder-tree.c2
2 files changed, 6 insertions, 1 deletions
diff --git a/mail/ChangeLog b/mail/ChangeLog
index b591f1aeef..2f90cd2bc8 100644
--- a/mail/ChangeLog
+++ b/mail/ChangeLog
@@ -1,5 +1,10 @@
2003-12-05 Rodney Dawes <dobey@ximian.com>
+ * em-folder-tree.c (render_display_name): Remove the extra || unread
+ check in the conditional in the g_object_set () call
+
+2003-12-05 Rodney Dawes <dobey@ximian.com>
+
Fixes bug #51482
* em-folder-tree.c (render_display_name): Don't hardcode colors
diff --git a/mail/em-folder-tree.c b/mail/em-folder-tree.c
index df93d40a06..23f4a88a5c 100644
--- a/mail/em-folder-tree.c
+++ b/mail/em-folder-tree.c
@@ -277,7 +277,7 @@ render_display_name (GtkTreeViewColumn *column, GtkCellRenderer *renderer,
display = g_strdup (name);
g_object_set (renderer, "text", display,
- "weight", bold || unread ? PANGO_WEIGHT_BOLD : PANGO_WEIGHT_NORMAL,
+ "weight", bold ? PANGO_WEIGHT_BOLD : PANGO_WEIGHT_NORMAL,
NULL);
g_free (display);