Added Ctrl+A to mark all.

This commit is contained in:
Krom, Robertus 2017-06-21 09:45:21 +02:00
parent 9e2965d73e
commit a0e4d77431

View file

@ -494,6 +494,10 @@ namespace Greenshot.Drawing
e.SuppressKeyPress = true;
}
if (e.Control && e.KeyCode == Keys.A)
{
_textBox.SelectAll();
}
// Added for FEATURE-1064
if (e.KeyCode == Keys.Back && e.Control)
{