From: jp Date: Wed, 13 Apr 2016 09:19:48 +0000 (+0200) Subject: control insert in textBox X-Git-Tag: v0.4~71^2 X-Git-Url: https://git.osiis.dedyn.io/?a=commitdiff_plain;h=ef53a23fa66932931b7150b489750725d82f77aa;p=jp%2Fcrow.git control insert in textBox --- 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) {