From a0e4d77431ed044ad03efafbb9f77473a33c38b5 Mon Sep 17 00:00:00 2001 From: "Krom, Robertus" Date: Wed, 21 Jun 2017 09:45:21 +0200 Subject: [PATCH] Added Ctrl+A to mark all. --- Greenshot/Drawing/TextContainer.cs | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Greenshot/Drawing/TextContainer.cs b/Greenshot/Drawing/TextContainer.cs index 80f9a66f5..d352aa056 100644 --- a/Greenshot/Drawing/TextContainer.cs +++ b/Greenshot/Drawing/TextContainer.cs @@ -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) {