From fa75e0e7c45dfd7b72b9fa56dfb4b0ca1496c81c Mon Sep 17 00:00:00 2001 From: Lauris BH Date: Wed, 8 Mar 2017 02:28:23 +0200 Subject: Fix keyboard shortcuts not to trigger on AltGr key (#5566) On Windows when pressing AltGr it will trigger event with same properties as left Ctrl key. Check explicitly that altKey is false otherwise on some keyboard layouts input of special characters is blocked. --- webapp/utils/utils.jsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/webapp/utils/utils.jsx b/webapp/utils/utils.jsx index 384cea752..58278c893 100644 --- a/webapp/utils/utils.jsx +++ b/webapp/utils/utils.jsx @@ -32,7 +32,7 @@ export function isMac() { } export function cmdOrCtrlPressed(e) { - return (isMac() && e.metaKey) || (!isMac() && e.ctrlKey); + return (isMac() && e.metaKey) || (!isMac() && e.ctrlKey && !e.altKey); } export function isInRole(roles, inRole) { -- cgit v1.2.3-1-g7c22