diff --git a/src/fenrir/core/inputManager.py b/src/fenrir/core/inputManager.py index 2620eab0..139ed4c6 100644 --- a/src/fenrir/core/inputManager.py +++ b/src/fenrir/core/inputManager.py @@ -105,7 +105,10 @@ class inputManager(): self.env['runtime']['inputDriver'].grabAllDevices() def updateInputDevices(self): - self.env['runtime']['inputDriver'].updateInputDevices() + try: + self.env['runtime']['inputDriver'].updateInputDevices() + except: + pass def removeAllDevices(self): try: