1
0
mirror of https://github.com/moparisthebest/k-9 synced 2024-08-13 17:03:48 -04:00

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

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);