2
0
Эх сурвалжийг харах

Fixed mixing public fields and properties

tznind 4 жил өмнө
parent
commit
899ef1ffea

+ 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;}
 
 	}