logo

mastofe

My custom branche(s) on git.pleroma.social/pleroma/mastofe
commit: b3d7ad958fd9e26f64efb24b9ae0de8254fd1cd5
parent: 552d22bec9602a64616538f7df0bdac13140c7f8
Author: Eugen Rochko <eugen@zeonfederated.com>
Date:   Wed, 11 Oct 2017 01:01:17 +0200

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:

Mapp/javascript/mastodon/features/ui/index.js2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 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); }; }