Browse Source

Fixed mixing public fields and properties

tznind 4 years ago
parent
commit
899ef1ffea
1 changed files with 2 additions and 2 deletions
  1. 2 2
      Terminal.Gui/Views/TreeView.cs

+ 2 - 2
Terminal.Gui/Views/TreeView.cs

@@ -254,7 +254,7 @@ namespace Terminal.Gui {
 		/// <summary>
 		/// Optional color scheme to use when rendering <see cref="ExpandableSymbol"/> (defaults to null)
 		/// </summary>
-		public Attribute? ExpandableSymbolColor;
+		public Attribute? ExpandableSymbolColor {get;set;}
 
 				
 		/// <summary>
@@ -265,7 +265,7 @@ namespace Terminal.Gui {
 		/// <summary>
 		/// Optional color scheme to use when rendering <see cref="CollapseableSymbol"/> (defaults to null)
 		/// </summary>
-		public Attribute? CollapseableSymbolColor;
+		public Attribute? CollapseableSymbolColor {get;set;}
 
 	}