mirror of
https://github.com/M66B/FairEmail.git
synced 2026-04-05 08:33:37 +02:00
Use star for unexposed messages
This commit is contained in:
@@ -232,7 +232,7 @@ public class AdapterAccount extends RecyclerView.Adapter<AdapterAccount.ViewHold
|
||||
if (account.unseen > 0)
|
||||
sb.append(NF.format(account.unseen));
|
||||
if (unexposed > 0)
|
||||
sb.append('\u207A');
|
||||
sb.append('\u2B51');
|
||||
tvName.setText(context.getString(R.string.title_name_count, account.name, sb));
|
||||
} else
|
||||
tvName.setText(account.name);
|
||||
|
||||
@@ -356,7 +356,7 @@ public class AdapterFolder extends RecyclerView.Adapter<AdapterFolder.ViewHolder
|
||||
sb.append(NF.format(unseen));
|
||||
}
|
||||
if (unexposed > 0)
|
||||
sb.append('\u207A');
|
||||
sb.append('\u2B51');
|
||||
tvName.setText(context.getString(R.string.title_name_count,
|
||||
folder.getDisplayName(context, folder.parent_ref), sb));
|
||||
} else
|
||||
|
||||
@@ -164,7 +164,7 @@ public class AdapterNavAccountFolder extends RecyclerView.Adapter<AdapterNavAcco
|
||||
if (count > 0)
|
||||
sb.append(NF.format(count));
|
||||
if (unexposed > 0)
|
||||
sb.append('\u207A');
|
||||
sb.append('\u2B51');
|
||||
tvItem.setText(context.getString(R.string.title_name_count, name, sb));
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user