summaryrefslogtreecommitdiffhomepage
path: root/android/src/main
diff options
context:
space:
mode:
authorJanito Vaqueiro Ferreira Filho <janito@mullvad.net>2020-11-03 18:18:24 +0000
committerJanito Vaqueiro Ferreira Filho <janito@mullvad.net>2020-11-04 15:20:10 +0000
commita7132f95d71bf04d5edf85eb72353965aedcf55a (patch)
treec98b755db2ce65fc7c401e42e774be350c3ec1e0 /android/src/main
parent52c0c9df9bfd75f78d6755bf0f401b163f9a9710 (diff)
downloadmullvadvpn-a7132f95d71bf04d5edf85eb72353965aedcf55a.tar.xz
mullvadvpn-a7132f95d71bf04d5edf85eb72353965aedcf55a.zip
Fix cell widget text size
Diffstat (limited to 'android/src/main')
-rw-r--r--android/src/main/kotlin/net/mullvad/mullvadvpn/ui/widget/Cell.kt2
1 files changed, 1 insertions, 1 deletions
diff --git a/android/src/main/kotlin/net/mullvad/mullvadvpn/ui/widget/Cell.kt b/android/src/main/kotlin/net/mullvad/mullvadvpn/ui/widget/Cell.kt
index a533b5e758..6e91fe4b57 100644
--- a/android/src/main/kotlin/net/mullvad/mullvadvpn/ui/widget/Cell.kt
+++ b/android/src/main/kotlin/net/mullvad/mullvadvpn/ui/widget/Cell.kt
@@ -18,7 +18,7 @@ open class Cell : LinearLayout {
setPadding(0, verticalPadding, rightPadding, verticalPadding)
setTextColor(context.getColor(R.color.white))
- setTextSize(TypedValue.COMPLEX_UNIT_PX, resources.getDimension(R.dimen.text_medium))
+ setTextSize(TypedValue.COMPLEX_UNIT_PX, resources.getDimension(R.dimen.text_medium_plus))
setTypeface(null, Typeface.BOLD)
}