Browse Source

Added =0 to enum

Tig 1 year ago
parent
commit
1129fd4938
1 changed files with 2 additions and 2 deletions
  1. 2 2
      Terminal.Gui/View/Layout/Dim.cs

+ 2 - 2
Terminal.Gui/View/Layout/Dim.cs

@@ -30,7 +30,7 @@ public enum DimAutoStyle
     ///         The corresponding dimension of the view's <see cref="View.Text"/> will be ignored.
     ///         The corresponding dimension of the view's <see cref="View.Text"/> will be ignored.
     ///     </para>
     ///     </para>
     /// </summary>
     /// </summary>
-    Content = 1,
+    Content = 0,
 
 
     /// <summary>
     /// <summary>
     ///     <para>
     ///     <para>
@@ -42,7 +42,7 @@ public enum DimAutoStyle
     ///         The corresponding dimensions of the <see cref="View.Subviews"/> will be ignored.
     ///         The corresponding dimensions of the <see cref="View.Subviews"/> will be ignored.
     ///     </para>
     ///     </para>
     /// </summary>
     /// </summary>
-    Text = 2
+    Text = 1
 }
 }
 
 
 /// <summary>
 /// <summary>