mirror of
https://github.com/M66B/FairEmail.git
synced 2025-12-27 16:10:58 +01:00
Low light archive/sent folder name when message duplicate
This commit is contained in:
@@ -360,8 +360,7 @@ public class AdapterMessage extends PagedListAdapter<TupleMessageEx, AdapterMess
|
||||
tvFolder.setText(message.folderDisplay == null
|
||||
? Helper.localizeFolderName(context, message.folderName)
|
||||
: message.folderDisplay);
|
||||
tvFolder.setAlpha(EntityFolder.ARCHIVE.equals(message.folderType) ||
|
||||
EntityFolder.SENT.equals(message.folderType) ? 0.5f : 1.0f);
|
||||
tvFolder.setAlpha(message.duplicate ? 0.5f : 1.0f);
|
||||
}
|
||||
tvFolder.setVisibility(viewType == ViewType.FOLDER ? View.GONE : View.VISIBLE);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user