From 899ef1ffeaaae5df3f47357b46e2d1c62f4b82fc Mon Sep 17 00:00:00 2001 From: tznind Date: Wed, 16 Dec 2020 14:21:28 +0000 Subject: [PATCH] Fixed mixing public fields and properties --- Terminal.Gui/Views/TreeView.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Terminal.Gui/Views/TreeView.cs b/Terminal.Gui/Views/TreeView.cs index 1a5e6d82e..5c9e57bcb 100644 --- a/Terminal.Gui/Views/TreeView.cs +++ b/Terminal.Gui/Views/TreeView.cs @@ -254,7 +254,7 @@ namespace Terminal.Gui { /// /// Optional color scheme to use when rendering (defaults to null) /// - public Attribute? ExpandableSymbolColor; + public Attribute? ExpandableSymbolColor {get;set;} /// @@ -265,7 +265,7 @@ namespace Terminal.Gui { /// /// Optional color scheme to use when rendering (defaults to null) /// - public Attribute? CollapseableSymbolColor; + public Attribute? CollapseableSymbolColor {get;set;} }