1
0
Fork 0
mirror of https://github.com/beefytech/Beef.git synced 2025-07-04 23:36:00 +02:00

Merge pull request #1094 from Fusioon/master

Fix AltGr triggering keyboard shortcuts.
This commit is contained in:
Brian Fiete 2021-07-09 15:52:20 +02:00 committed by GitHub
commit 4192d90e7a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
5 changed files with 37 additions and 5 deletions

View file

@ -44,7 +44,8 @@ namespace IDE.ui
{
if ((evt.mKeyCode == .Control) ||
(evt.mKeyCode == .Shift) ||
(evt.mKeyCode == .Alt))
(evt.mKeyCode == .Alt) ||
(evt.mKeyCode == .RAlt))
return;
if ((evt.mKeyFlags == 0) &&