Update inputManager.py
This commit is contained in:
parent
5de2b4cef6
commit
b9e3332513
@ -26,7 +26,8 @@ class inputManager():
|
|||||||
for event in self.iDevices[fd].read():
|
for event in self.iDevices[fd].read():
|
||||||
if self.isFenrirKey(environment, event):
|
if self.isFenrirKey(environment, event):
|
||||||
environment['input']['consumeKey'] = not environment['input']['keyForeward'] and not environment['generalInformation']['suspend']
|
environment['input']['consumeKey'] = not environment['input']['keyForeward'] and not environment['generalInformation']['suspend']
|
||||||
if self.isConsumeKeypress(environment):
|
if self.isConsumeKeypress(environment):
|
||||||
|
environment['runtime']['debug'].writeDebugOut(environment, str(event)+' consume'+str(time.time()),debug.debugLevel.ERROR)
|
||||||
self.writeUInput(self.uDevices[fd], event)
|
self.writeUInput(self.uDevices[fd], event)
|
||||||
keyString = ''
|
keyString = ''
|
||||||
if self.isFenrirKey(environment, event):
|
if self.isFenrirKey(environment, event):
|
||||||
@ -62,8 +63,12 @@ class inputManager():
|
|||||||
not environment['runtime']['settingsManager'].getSettingAsBool(environment, 'keyboard', 'grabDevices')
|
not environment['runtime']['settingsManager'].getSettingAsBool(environment, 'keyboard', 'grabDevices')
|
||||||
|
|
||||||
def writeUInput(self, uDevice, event):
|
def writeUInput(self, uDevice, event):
|
||||||
uDevice.write_event(event)
|
try:
|
||||||
uDevice.syn()
|
environment['runtime']['debug'].writeDebugOut(environment, str(event)+' write event '+str(time.time()),debug.debugLevel.ERROR)
|
||||||
|
uDevice.write_event(event)
|
||||||
|
uDevice.syn()
|
||||||
|
except Exception as a:
|
||||||
|
environment['runtime']['debug'].writeDebugOut(environment, str(e)+' error exception '+str(time.time()),debug.debugLevel.ERROR)
|
||||||
|
|
||||||
def getShortcutString(self, environment):
|
def getShortcutString(self, environment):
|
||||||
if environment['input']['currShortcut'] == {}:
|
if environment['input']['currShortcut'] == {}:
|
||||||
|
Loading…
Reference in New Issue
Block a user