fix: increase font size for messages

On phones with a rather large screen, the given font sizing is
small even for the default theme. Increasing the size helps with
readability and reduces strain on the eyes.

Signed-off-by: Danny Seymour <danny@seymour.family>
This commit is contained in:
Danny Seymour 2022-04-07 02:45:10 -07:00
parent 94099f4908
commit 69e1808290
2 changed files with 2 additions and 1 deletions

1
changelog.d/5717.misc Normal file
View File

@ -0,0 +1 @@
fix: increase font size for messages

View File

@ -85,7 +85,7 @@ abstract class MessageTextItem : AbsMessageItem<MessageTextItem.Holder>() {
if (useBigFont) {
holder.messageView.textSize = 44F
} else {
holder.messageView.textSize = 14F
holder.messageView.textSize = 15.5F
}
if (searchForPills) {
message?.charSequence?.findPillsAndProcess(coroutineScope) {