Skip to content

Commit

Permalink
Fix AltGr+Number should not do the same as Ctrl+Number
Browse files Browse the repository at this point in the history
  • Loading branch information
Pedro Fonseca committed Feb 22, 2024
1 parent 639a80f commit 6c9e9f8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Zelda/GUI/ZeldaUI.cs
Expand Up @@ -1221,7 +1221,7 @@ private void ZeldaUI_KeyDown(object sender, KeyEventArgs e)
currentTab?.scintilla?.Redo();
e.Handled = e.SuppressKeyPress = true;
}
else if (e.Control)
else if (e.Control && !e.Alt)
{
int digit = -1;
if (e.KeyCode >= Keys.NumPad1 && e.KeyCode <= Keys.NumPad9)
Expand Down

0 comments on commit 6c9e9f8

Please sign in to comment.