From 09043e80b9cde3b9c72c9d1d25d325808fb590c9 Mon Sep 17 00:00:00 2001 From: "Frank A. Krueger" Date: Thu, 15 Jun 2017 23:17:21 -0700 Subject: [PATCH] Fix default cols --- Ooui/TextArea.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Ooui/TextArea.cs b/Ooui/TextArea.cs index bf15362..194cc9c 100644 --- a/Ooui/TextArea.cs +++ b/Ooui/TextArea.cs @@ -21,7 +21,7 @@ namespace Ooui set => SetProperty (ref rows, value, "rows"); } - int cols = 2; + int cols = 20; public int Columns { get => cols; set => SetProperty (ref cols, value, "cols");