Update evdevDriver.py

This commit is contained in:
chrys 2019-10-04 18:05:33 +02:00 committed by GitHub
parent 882889ee1c
commit d084a11145
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -284,6 +284,7 @@ class driver(inputDriver):
return True
ok = True
for fd in self.iDevices:
if not self.gDevices[fd]:
ok = ok and self.grabDevice(fd)
return ok
def ungrabAllDevices(self):
@ -291,6 +292,7 @@ class driver(inputDriver):
return True
ok = True
for fd in self.iDevices:
if self.gDevices[fd]:
ok = ok and self.ungrabDevice(fd)
return ok
def createUInputDev(self, fd):