From ef53a23fa66932931b7150b489750725d82f77aa Mon Sep 17 00:00:00 2001 From: jp Date: Wed, 13 Apr 2016 11:19:48 +0200 Subject: [PATCH] control insert in textBox --- src/GraphicObjects/TextBox.cs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/GraphicObjects/TextBox.cs b/src/GraphicObjects/TextBox.cs index a042198b..7d61d5ab 100644 --- a/src/GraphicObjects/TextBox.cs +++ b/src/GraphicObjects/TextBox.cs @@ -121,6 +121,8 @@ namespace Crow case Key.Insert: if (e.Shift) this.Insert (Interface.CurrentInterface.Clipboard); + else if (e.Control) + Interface.CurrentInterface.Clipboard = this.SelectedText; break; case Key.Left: if (e.Shift) { -- 2.47.3