mirror of
https://github.com/greenshot/greenshot
synced 2025-07-16 10:03:44 -07:00
Added Ctrl+A to mark all.
This commit is contained in:
parent
9e2965d73e
commit
a0e4d77431
1 changed files with 4 additions and 0 deletions
|
@ -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)
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue