Browse Source

Changed DimCombine class to internal.

BDisp 4 years ago
parent
commit
5fe4e8be33
1 changed files with 1 additions and 1 deletions
  1. 1 1
      Terminal.Gui/Core/PosDim.cs

+ 1 - 1
Terminal.Gui/Core/PosDim.cs

@@ -499,7 +499,7 @@ namespace Terminal.Gui {
 			return new DimAbsolute (n);
 		}
 
-		public class DimCombine : Dim {
+		internal class DimCombine : Dim {
 			Dim left, right;
 			bool add;
 			public DimCombine (bool add, Dim left, Dim right)