Merge branch 'master' into inputHandlingRework
This commit is contained in:
commit
825738ac68
@ -74,7 +74,7 @@ charEcho=False
|
|||||||
# echo deleted chars
|
# echo deleted chars
|
||||||
charDeleteEcho=True
|
charDeleteEcho=True
|
||||||
# echo word after pressing space
|
# echo word after pressing space
|
||||||
wordEcho=True
|
wordEcho=False
|
||||||
# interrupt speech on any keypress
|
# interrupt speech on any keypress
|
||||||
interruptOnKeyPress=False
|
interruptOnKeyPress=False
|
||||||
|
|
||||||
|
@ -1,22 +1,23 @@
|
|||||||
#!/bin/python
|
#!/bin/python
|
||||||
from utils import word_utils
|
from utils import word_utils
|
||||||
|
initialized = False
|
||||||
|
try:
|
||||||
|
import enchant
|
||||||
|
initialized = True
|
||||||
|
except:
|
||||||
|
print('nööP')
|
||||||
|
|
||||||
class command():
|
class command():
|
||||||
def __init__(self):
|
def __init__(self):
|
||||||
self.initialized = False
|
|
||||||
try:
|
|
||||||
import enchant
|
|
||||||
self.initialized = True
|
|
||||||
except:
|
|
||||||
pass
|
pass
|
||||||
|
|
||||||
def run(self, environment):
|
def run(self, environment):
|
||||||
if not environment['runtime']['settingsManager'].getSettingAsBool(environment, 'general', 'autoSpellCheck'):
|
if not environment['runtime']['settingsManager'].getSettingAsBool(environment, 'general', 'autoSpellCheck'):
|
||||||
return environment
|
return environment
|
||||||
|
|
||||||
if not self.initialized:
|
if not initialized:
|
||||||
environment['runtime']['outputManager'].presentText(environment, 'pychant is not installed', interrupt=True)
|
environment['runtime']['outputManager'].presentText(environment, 'pychant is not installed', interrupt=True)
|
||||||
|
return environment
|
||||||
spellChecker = enchant.Dict(environment['runtime']['settingsManager'].getSetting(environment, 'general', 'spellCheckLanguage'))
|
spellChecker = enchant.Dict(environment['runtime']['settingsManager'].getSetting(environment, 'general', 'spellCheckLanguage'))
|
||||||
|
|
||||||
# just when cursor move worddetection is needed
|
# just when cursor move worddetection is needed
|
||||||
|
Loading…
Reference in New Issue
Block a user