Skip to content

Commit e6b9328

Browse files
committed
Fix suffix folding.
1 parent e319f87 commit e6b9328

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

plover/translation.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -290,7 +290,7 @@ def _find_translation(translations, dictionary, stroke):
290290
t = _find_translation_helper(translations, dictionary, stroke, SUFFIX_KEYS)
291291
if t:
292292
return t
293-
return Translation([stroke], _lookup([stroke], dictionary, []))
293+
return Translation([stroke], _lookup([stroke], dictionary, SUFFIX_KEYS))
294294

295295
def _find_translation_helper(translations, dictionary, stroke, suffixes):
296296
# The new stroke can either create a new translation or replace

0 commit comments

Comments
 (0)