Fix crash when right clicking a word in editor and enchant is not installed.

This commit is contained in:
Youness Alaoui 2019-02-10 14:54:36 -05:00 committed by Curtis Gedak
parent d7203ddacf
commit 9b774d327f

View file

@ -470,7 +470,7 @@ class textEditView(QTextEdit):
# Check if the selected word is misspelled and offer spelling
# suggestions if it is.
if cursor.hasSelection():
if self._dict and cursor.hasSelection():
text = str(cursor.selectedText())
valid = self._dict.check(text)
selectedWord = cursor.selectedText()