From 0f8f59db2ff566c360f941ca32bb714187172d91 Mon Sep 17 00:00:00 2001 From: jp Date: Wed, 16 Mar 2016 07:57:20 +0100 Subject: [PATCH] add tab in TextBox --- src/GraphicObjects/TextBox.cs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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; } -- 2.47.3