[anjal] Fix color of preview on selected text. FIXME: This should be themable.
- From: Srinivasa Ragavan <sragavan src gnome org>
- To: svn-commits-list gnome org
- Cc:
- Subject: [anjal] Fix color of preview on selected text. FIXME: This should be themable.
- Date: Mon, 24 Aug 2009 06:19:47 +0000 (UTC)
commit 3086dbba0fbdc4f3505ca78fea4b674f835f4e99
Author: Srinivasa Ragavan <sragavan novell com>
Date: Mon Aug 24 11:49:08 2009 +0530
Fix color of preview on selected text. FIXME: This should be themable.
src/em-tree-store.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
---
diff --git a/src/em-tree-store.c b/src/em-tree-store.c
index cffa364..96c4bfc 100644
--- a/src/em-tree-store.c
+++ b/src/em-tree-store.c
@@ -335,7 +335,7 @@ emts_get_value(GtkTreeModel *tree_model, GtkTreeIter *iter, gint column, GValue
/* FIXME: This should be done at the backend/camel. Doing here is expensive, but just ok for 0.001 release*/
if (preview && *preview)
nline = strchr (preview, '\n') != NULL;
- str = g_markup_printf_escaped (_("<span foreground=\"%s\" >%s%s</span>"), sel ? "#d3d7cf" : "#808080", (preview && *preview) ? preview : _("Message not yet downloaded or preview could not be constructed\n"), nline ? "" : "\n");
+ str = g_markup_printf_escaped (_("<span foreground=\"%s\" >%s%s</span>"), sel ? "#666362" : "#808080", (preview && *preview) ? preview : _("Message not yet downloaded or preview could not be constructed\n"), nline ? "" : "\n");
g_value_set_string(value, str);
g_free(str);
break;
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]