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
commit f9968b01b0

View file

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