Fixing textbox issue with polish letter ą

Fixing issue in textbox when typing ALTGR+A (polish letter ą) raised in threads BUG-2288, BUG-2474.
This commit is contained in:
Marcin 2019-11-29 09:52:54 +01:00 committed by Robin Krom
commit e196ada102

View file

@ -495,8 +495,7 @@ namespace Greenshot.Addon.LegacyEditor.Drawing
HideTextBox();
e.SuppressKeyPress = true;
}
if (e.Control && e.KeyCode == Keys.A)
if (e.Control && !e.Alt && e.KeyCode == Keys.A)
{
_textBox.SelectAll();
}