From 07cf27863b2be5704badb6799ef654ce6ae35817 Mon Sep 17 00:00:00 2001 From: Marvin Elsen Date: Mon, 7 Oct 2024 00:02:28 +0200 Subject: [PATCH] Set default details headword font size to 50 --- src/main/kotlin/com/marvinelsen/willow/config/Config.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/kotlin/com/marvinelsen/willow/config/Config.kt b/src/main/kotlin/com/marvinelsen/willow/config/Config.kt index c04afc8..1a3b423 100644 --- a/src/main/kotlin/com/marvinelsen/willow/config/Config.kt +++ b/src/main/kotlin/com/marvinelsen/willow/config/Config.kt @@ -133,7 +133,7 @@ class DetailsConfig(private val preferences: Preferences) { private const val PRONUNCIATION_FONT_SIZE_KEY = "detailsPronunciationFontSize" private val DEFAULT_PRONUNCIATION = Pronunciation.PINYIN_WITH_TONE_MARKS - private const val DEFAULT_HEADWORD_FONT_SIZE = 40 + private const val DEFAULT_HEADWORD_FONT_SIZE = 50 private const val DEFAULT_PRONUNCIATION_FONT_SIZE = 16 }