mirror of
https://github.com/greenshot/greenshot
synced 2025-08-22 14:24:43 -07:00
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:
parent
c83e0adc63
commit
f9968b01b0
1 changed files with 1 additions and 2 deletions
|
@ -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();
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue