diff --git a/src/fenrirscreenreader/inputDriver/evdevDriver.py b/src/fenrirscreenreader/inputDriver/evdevDriver.py index 12df5457..85e12c9a 100644 --- a/src/fenrirscreenreader/inputDriver/evdevDriver.py +++ b/src/fenrirscreenreader/inputDriver/evdevDriver.py @@ -274,10 +274,10 @@ class driver(inputDriver): except Exception as e: self.env['runtime']['debug'].writeDebugOut('InputDriver evdev: init Uinput not possible: ' + str(e),debug.debugLevel.ERROR) return - def addDevice(self, newDevice, fd): + def addDevice(self, newDevice): self.iDevices[newDevice.fd] = newDevice - self.createUInputDev(fd) - self.grabDevice(fd) + self.createUInputDev(newDevice.fd) + self.grabDevice(newDevice.fd) def grabDevice(self, fd): if not self.env['runtime']['settingsManager'].getSettingAsBool('keyboard', 'grabDevices'): return