From: jp Date: Wed, 16 Mar 2016 06:57:20 +0000 (+0100) Subject: add tab in TextBox X-Git-Tag: v0.4~74^2^2~1 X-Git-Url: https://git.osiis.dedyn.io/?a=commitdiff_plain;h=0f8f59db2ff566c360f941ca32bb714187172d91;p=jp%2Fcrow.git add tab in TextBox --- diff --git a/src/GraphicObjects/TextBox.cs b/src/GraphicObjects/TextBox.cs index 6d2d8ca0..08ec1f69 100644 --- a/src/GraphicObjects/TextBox.cs +++ b/src/GraphicObjects/TextBox.cs @@ -142,7 +142,8 @@ namespace Crow case Key.RWin: break; case Key.Tab: - this.Insert("\t"); + this.Insert ("\t"); + break; default: break; }