1
0
mirror of https://github.com/moparisthebest/k-9 synced 2024-12-26 01:28:50 -05:00

Fix reversed color chip alpha

This commit is contained in:
Jesse Vincent 2009-12-28 12:56:59 +00:00
parent 60b02909a3
commit 3e3b4d447d

View File

@ -2001,7 +2001,7 @@ public class MessageList
holder.position = -1;
holder.selected.setChecked(message.selected);
holder.chip.getBackground().setAlpha(message.read ? 255 : 127);
holder.chip.getBackground().setAlpha(message.read ? 127 : 255);
if (message.downloaded)
{