From 6c9e9f85bec108958cc1a2bc2a33530b950e9034 Mon Sep 17 00:00:00 2001 From: Pedro Fonseca Date: Thu, 22 Feb 2024 22:29:27 +0100 Subject: [PATCH] Fix AltGr+Number should not do the same as Ctrl+Number --- Zelda/GUI/ZeldaUI.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Zelda/GUI/ZeldaUI.cs b/Zelda/GUI/ZeldaUI.cs index 6b7a058..67aba3d 100644 --- a/Zelda/GUI/ZeldaUI.cs +++ b/Zelda/GUI/ZeldaUI.cs @@ -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)