mirror of
https://github.com/beefytech/Beef.git
synced 2025-06-22 09:38:01 +02:00
Fix AltGr triggering keyboard shortcuts.
This commit is contained in:
parent
46cc3d088b
commit
93cef5fe9b
5 changed files with 37 additions and 5 deletions
|
@ -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) &&
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue