Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Problem with keyboard shortcuts - multilanguage #390

Closed
deartify opened this issue Mar 11, 2017 · 1 comment
Closed

Problem with keyboard shortcuts - multilanguage #390

deartify opened this issue Mar 11, 2017 · 1 comment

Comments

@deartify
Copy link

deartify commented Mar 11, 2017

Hello
I have problem with keyboard shortcut. When I'm pressing right Alt+"z" which inserts polish sign "ż" it works as undo.
How can I disable this shortcut?

Btw thx for this great tool

Update:
I have found solution. Unicode 90 for me is "Z" and 89 is "Y". When i change this to 121 "y" and 122 "z" everything works.
around 6445 in content-tools.js
case 'windows': if (ev.keyCode === 121 && ev.ctrlKey) { redo = true; } if (ev.keyCode === 122 && ev.ctrlKey) { undo = true; }

@anthonyjb
Copy link
Member

@deartify thanks for the update - I guess we should really make these key combos configurable so that they can be easily updated for different language requirements.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

2 participants