Преглед изворни кода

Fixed mixing public fields and properties

tznind пре 4 година
родитељ
комит
899ef1ffea
1 измењених фајлова са 2 додато и 2 уклоњено
  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;}
 
 	}