add remove from spellcheck dict command

This commit is contained in:
chrys
2016-09-06 23:56:31 +02:00
parent e4a43931e8
commit 1aeb0a43a7
4 changed files with 7 additions and 7 deletions

View File

@ -33,14 +33,11 @@ class command():
x, y, currWord = word_utils.getCurrentWord(cursorPos['x'], 0, newContent)
if currWord != '':
if self.spellChecker.check(currWord):
environment['runtime']['outputManager'].presentText(environment, 'not misspelled',soundIcon='mispell', interrupt=True)
if self.spellChecker.is_added(currWord):
environment['runtime']['outputManager'].presentText(environment, currWord + ' is already in dict',soundIcon='Cancel', interrupt=True)
else:
if self.spellChecker.is_added(currWord):
environment['runtime']['outputManager'].presentText(environment, 'not misspelled',soundIcon='Cancel', interrupt=True)
else:
self.spellChecker.add(currWord)
environment['runtime']['outputManager'].presentText(environment, currWord + ' added',soundIcon='Accept', interrupt=True)
self.spellChecker.add(currWord)
environment['runtime']['outputManager'].presentText(environment, currWord + ' added',soundIcon='Accept', interrupt=True)
return environment
def setCallback(self, callback):