-
Notifications
You must be signed in to change notification settings - Fork 578
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
Keybindings does not work with not English layout. #1946
Comments
Another workaround - using keycodes:
|
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Keybinds with layout sensitive keys (letters and other) doesn't work.
Test on Arch Linux.
In Guake 3.7.0 keybindings works on both layouts, I think because there used
Gtk.AccelGroup
.This was changed in commit 6af0a95 and now
keyval
is used.Maybe we should back to
Accel
realisation with build-in magic.For example copy keys (
Ctrl+Shift+C
)For US layout
For RU layout
As workaround convert
keycode
to englishkeyval
, for me it look like this:This code does not full tested so it can crash in some case.
The text was updated successfully, but these errors were encountered: