Skip to content

Commit

Permalink
Merge pull request #31 from dnaq/dictionary-update-fix
Browse files Browse the repository at this point in the history
Only add translations to enabled dictionaries
  • Loading branch information
psethwick authored Aug 5, 2022
2 parents 7e74105 + b38809b commit 21bd78f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion plover_console_ui/add_translation.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ def __init__(self, engine, on_output, on_exit):
self.dicts = []
for path in self.engine.dictionaries:
d = self.engine.dictionaries[path]
if not d.readonly:
if not d.readonly and d.enabled:
self.dicts.append(d)

self.dict_index = 0
Expand Down

0 comments on commit 21bd78f

Please sign in to comment.