diff --git a/src/fenrir/commands/onInput/80000-capslock.py b/src/fenrir/commands/onInput/80000-capslock.py index 411df45d..f5ac8c78 100644 --- a/src/fenrir/commands/onInput/80000-capslock.py +++ b/src/fenrir/commands/onInput/80000-capslock.py @@ -19,9 +19,9 @@ class command(): if self.env['input']['oldCapsLock'] == self.env['input']['newCapsLock']: return if self.env['input']['newCapsLock']: - self.env['runtime']['outputManager'].presentText("Capslock on", interrupt=False) + self.env['runtime']['outputManager'].presentText("Capslock on", interrupt=True) else: - self.env['runtime']['outputManager'].presentText("Capslock off", interrupt=False) + self.env['runtime']['outputManager'].presentText("Capslock off", interrupt=True) def setCallback(self, callback): pass diff --git a/src/fenrir/commands/onInput/80300-scrolllock.py b/src/fenrir/commands/onInput/80300-scrolllock.py index 0e6ec67c..42033684 100644 --- a/src/fenrir/commands/onInput/80300-scrolllock.py +++ b/src/fenrir/commands/onInput/80300-scrolllock.py @@ -19,9 +19,9 @@ class command(): if self.env['input']['oldScrollLock'] == self.env['input']['newScrollLock']: return if self.env['input']['newScrollLock']: - self.env['runtime']['outputManager'].presentText("Scrolllock on", interrupt=False) + self.env['runtime']['outputManager'].presentText("Scrolllock on", interrupt=True) else: - self.env['runtime']['outputManager'].presentText("Scrolllock off", interrupt=False) + self.env['runtime']['outputManager'].presentText("Scrolllock off", interrupt=True) def setCallback(self, callback): pass diff --git a/src/fenrir/commands/onInput/80500-numlock.py b/src/fenrir/commands/onInput/80500-numlock.py index a2ebbc54..74283d1f 100644 --- a/src/fenrir/commands/onInput/80500-numlock.py +++ b/src/fenrir/commands/onInput/80500-numlock.py @@ -19,9 +19,9 @@ class command(): if self.env['input']['oldNumLock'] == self.env['input']['newNumLock']: return if self.env['input']['newNumLock']: - self.env['runtime']['outputManager'].presentText("Numlock on", interrupt=False) + self.env['runtime']['outputManager'].presentText("Numlock on", interrupt=True) else: - self.env['runtime']['outputManager'].presentText("Numlock off", interrupt=False) + self.env['runtime']['outputManager'].presentText("Numlock off", interrupt=True) def setCallback(self, callback): pass