Procházet zdrojové kódy

Fixed mixing public fields and properties

tznind před 4 roky
rodič
revize
899ef1ffea
1 změnil soubory, kde provedl 2 přidání a 2 odebrání
  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;}
 
 	}