diff options
author | Eugen Rochko <eugen@zeonfederated.com> | 2017-10-11 01:01:17 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-10-11 01:01:17 +0200 |
commit | b3d7ad958fd9e26f64efb24b9ae0de8254fd1cd5 (patch) | |
tree | a0abeafd6e7e9f13ba1525d8ffeedb71f7136e00 /app/javascript | |
parent | 552d22bec9602a64616538f7df0bdac13140c7f8 (diff) |
Fix #5306: Stop hotkeys in input fields even when shift is pressed (#5309)
AZERTY layouts require pressing shift to press a number at all, so it triggers a column switch even when simply typing numbers in textarea
Diffstat (limited to 'app/javascript')
-rw-r--r-- | app/javascript/mastodon/features/ui/index.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/javascript/mastodon/features/ui/index.js b/app/javascript/mastodon/features/ui/index.js index 21f2395ba..108b28422 100644 --- a/app/javascript/mastodon/features/ui/index.js +++ b/app/javascript/mastodon/features/ui/index.js @@ -186,7 +186,7 @@ export default class UI extends React.Component { componentDidMount () { this.hotkeys.__mousetrap__.stopCallback = (e, element) => { - return !(e.altKey || e.ctrlKey || e.shiftKey || e.metaKey) && ['TEXTAREA', 'SELECT', 'INPUT'].includes(element.tagName); + return !(e.altKey || e.ctrlKey || e.metaKey) && ['TEXTAREA', 'SELECT', 'INPUT'].includes(element.tagName); }; } |