Fix small issues with font size

This commit is contained in:
2021-05-15 20:22:42 -05:00
parent fcadbe7c38
commit c973f93424
3 changed files with 3 additions and 1 deletions

View File

@@ -153,7 +153,7 @@ class CheckmarkButtonView(
paint.style = Paint.Style.FILL
}
paint.textSize = when (value) {
paint.textSize = when (id) {
UNKNOWN -> dim(R.dimen.smallerTextSize)
else -> dim(R.dimen.smallTextSize)
}