Backport of PR #157 -- Fixing textbox issue with polish letter ą

This commit is contained in:
Robin Krom 2020-02-07 22:48:17 +01:00
commit 6d692dd3a5

View file

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