Show folder name on third line in compact mode threads

This commit is contained in:
M66B
2019-10-19 08:36:12 +02:00
parent cc1e7d947b
commit 6fdd4f3c9e
2 changed files with 19 additions and 20 deletions

View File

@@ -811,7 +811,7 @@ public class AdapterMessage extends RecyclerView.Adapter<AdapterMessage.ViewHold
else
tvFolder.setText(message.accountName + "/" + message.getFolderName(context));
tvFolder.setVisibility(compact ? View.GONE : View.VISIBLE);
tvFolder.setVisibility(compact && viewType != ViewType.THREAD ? View.GONE : View.VISIBLE);
if (viewType == ViewType.THREAD || !threading) {
tvCount.setVisibility(View.GONE);