From 05a7a99115b436ad308ad9fe631910af050693ff Mon Sep 17 00:00:00 2001 From: codemann8 Date: Sun, 6 Feb 2022 21:43:50 -0600 Subject: [PATCH] Enabled new font + lowercase hint text updates --- Text.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Text.py b/Text.py index e63926f3..5257dc40 100644 --- a/Text.py +++ b/Text.py @@ -655,7 +655,7 @@ class MultiByteCoreTextMapper(object): pending_space = False while words: word = words.pop(0) - # sanity check: if the word we have is more than 14 characters, we take as much as we can still fit and push the rest back for later + # sanity check: if the word we have is more than 19 characters, we take as much as we can still fit and push the rest back for later if cls.wordlen(word) > wrap: (word_first, word_rest) = cls.splitword(word, linespace) words.insert(0, word_rest)