From 2ee2b1756c4cc5acceac98e5f3990e7319b234d2 Mon Sep 17 00:00:00 2001 From: Simon Hofmann Date: Sun, 23 Oct 2022 23:22:22 +0200 Subject: [PATCH] (#442) Use correct mapping for right shift (right_shift instead of space) --- lib/provider/native/libnut-keyboard.class.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/provider/native/libnut-keyboard.class.ts b/lib/provider/native/libnut-keyboard.class.ts index e16e1790..cf6773f6 100644 --- a/lib/provider/native/libnut-keyboard.class.ts +++ b/lib/provider/native/libnut-keyboard.class.ts @@ -88,7 +88,7 @@ export default class KeyboardAction implements KeyboardProviderInterface { [Key.LeftShift, "shift"], [Key.LeftSuper, "command"], - [Key.RightShift, "space"], + [Key.RightShift, "right_shift"], [Key.RightSuper, "command"], [Key.Grave, "`"],