From 7e967c6110e8186c5a4858e0650f0d657361d304 Mon Sep 17 00:00:00 2001 From: Jesse Vincent Date: Sun, 20 Dec 2009 06:54:23 +0000 Subject: [PATCH] removed now-unused subject coloring code --- src/com/fsck/k9/activity/MessageList.java | 5 ----- 1 file changed, 5 deletions(-) diff --git a/src/com/fsck/k9/activity/MessageList.java b/src/com/fsck/k9/activity/MessageList.java index 9cf04b45a..368523a06 100644 --- a/src/com/fsck/k9/activity/MessageList.java +++ b/src/com/fsck/k9/activity/MessageList.java @@ -1915,10 +1915,6 @@ public class MessageList holder.chip.getBackground().setAlpha(message.read ? 0 : 255); holder.subject.setTypeface(null, message.read ? Typeface.NORMAL : Typeface.BOLD); - int subjectColor = holder.from.getCurrentTextColor(); // Get from another field that never changes color - - - setVisibleWidgetsForListItem(view, mSelectedWidget); // XXX TODO there has to be some way to walk our view hierarchy and get this holder.flagged.setTag((Integer)position); @@ -1940,7 +1936,6 @@ public class MessageList view.getBackground().setAlpha(127); } - holder.subject.setTextColor(0xff000000 | subjectColor); holder.subject.setText(message.subject); holder.from.setText(message.sender);