Re-add the code I removed twice, now that dan explained what it works around

This commit is contained in:
Jesse Vincent 2009-04-20 06:27:51 +00:00
parent ee92878d9e
commit b0a295e1a3
1 changed files with 8 additions and 0 deletions

View File

@ -2199,6 +2199,14 @@ public class FolderMessageList extends ExpandableListActivity
{
holder.subject.setTextColor(Email.FLAGGED_COLOR);
}
else
{
// Removing that block of code from FolderMessageList means that flagging any
// single message in a folder causes random messages to have their subjects
// switch to the flagged color. -danapple
holder.subject.setTextColor(0xff000000);
}
holder.subject.setText(message.subject);