diff --git a/manuskript/functions/spellchecker.py b/manuskript/functions/spellchecker.py index fb6521c..3c7d99f 100644 --- a/manuskript/functions/spellchecker.py +++ b/manuskript/functions/spellchecker.py @@ -363,7 +363,7 @@ class PySpellcheckerDictionary(BasicDictionary): def getSuggestions(self, word): candidates = self._dict.candidates(word) - if word in candidates: + if candidates and word in candidates: candidates.remove(word) return candidates diff --git a/manuskript/ui/views/textEditView.py b/manuskript/ui/views/textEditView.py index fe17c84..fbc8461 100644 --- a/manuskript/ui/views/textEditView.py +++ b/manuskript/ui/views/textEditView.py @@ -620,10 +620,11 @@ class textEditView(QTextEdit): selectedWord = cursor.selectedText() - for word in match.replacements: - action = self.SpellAction(word, spell_menu) - action.correct.connect(self.correctWord) - spell_menu.addAction(action) + if match.replacements: + for word in match.replacements: + action = self.SpellAction(word, spell_menu) + action.correct.connect(self.correctWord) + spell_menu.addAction(action) # Adds: add to dictionary addAction = QAction(self.tr("&Add to dictionary"), popup_menu) @@ -635,7 +636,7 @@ class textEditView(QTextEdit): # Only add the spelling suggests to the menu if there are # suggestions. - if len(match.replacements) > 0: + if match.replacements and len(match.replacements) > 0: # Adds: suggestions popup_menu.insertMenu(popup_menu.actions()[0], spell_menu) else: