mirror of https://github.com/M66B/FairEmail.git
Increase size of sender by 10% for unread messages
This commit is contained in:
parent
3e5e3dd1bc
commit
b589fa3e67
|
@ -464,7 +464,7 @@ public class AdapterMessage extends RecyclerView.Adapter<AdapterMessage.ViewHold
|
||||||
|
|
||||||
// Text size
|
// Text size
|
||||||
if (textSize != 0) {
|
if (textSize != 0) {
|
||||||
tvFrom.setTextSize(TypedValue.COMPLEX_UNIT_PX, textSize);
|
tvFrom.setTextSize(TypedValue.COMPLEX_UNIT_PX, textSize * (message.unseen > 0 ? 1.1f : 1f));
|
||||||
tvSubject.setTextSize(TypedValue.COMPLEX_UNIT_PX, textSize * 0.9f);
|
tvSubject.setTextSize(TypedValue.COMPLEX_UNIT_PX, textSize * 0.9f);
|
||||||
tvPreview.setTextSize(TypedValue.COMPLEX_UNIT_PX, textSize * 0.9f);
|
tvPreview.setTextSize(TypedValue.COMPLEX_UNIT_PX, textSize * 0.9f);
|
||||||
tvBody.setTextSize(TypedValue.COMPLEX_UNIT_PX, textSize);
|
tvBody.setTextSize(TypedValue.COMPLEX_UNIT_PX, textSize);
|
||||||
|
|
Loading…
Reference in New Issue