diff --git a/src/Greenshot.Addon.LegacyEditor/Drawing/TextContainer.cs b/src/Greenshot.Addon.LegacyEditor/Drawing/TextContainer.cs index e11fdbeb0..43ad4e50a 100644 --- a/src/Greenshot.Addon.LegacyEditor/Drawing/TextContainer.cs +++ b/src/Greenshot.Addon.LegacyEditor/Drawing/TextContainer.cs @@ -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(); }