Skip to content

Commit

Permalink
Added Ctrl+A to mark all.
Browse files Browse the repository at this point in the history
  • Loading branch information
Lakritzator committed Jun 21, 2017
1 parent 9e2965d commit a0e4d77
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions Greenshot/Drawing/TextContainer.cs
Original file line number Diff line number Diff line change
Expand Up @@ -494,6 +494,10 @@ private void textBox_KeyDown(object sender, KeyEventArgs e)
e.SuppressKeyPress = true;
}

if (e.Control && e.KeyCode == Keys.A)
{
_textBox.SelectAll();
}
// Added for FEATURE-1064
if (e.KeyCode == Keys.Back && e.Control)
{
Expand Down

0 comments on commit a0e4d77

Please sign in to comment.