We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 644de5a commit 11c7b2fCopy full SHA for 11c7b2f
adafruit_display_text/__init__.py
@@ -111,7 +111,7 @@ def count_overlap(range1, range2):
111
word_range = (word_start_idx, word_start_idx + len(word))
112
for outline_range in outline_accent_ranges:
113
overlap = count_overlap(word_range, (outline_range[0], outline_range[1]))
114
- wwidth += overlap * outline_range[2]
+ wwidth += overlap * (outline_range[2] * 2)
115
116
char_index += len(word)
117
0 commit comments