소스 검색

Added =0 to enum

Tig 1 년 전
부모
커밋
1129fd4938
1개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  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.
     ///     </para>
     /// </summary>
-    Content = 1,
+    Content = 0,
 
     /// <summary>
     ///     <para>
@@ -42,7 +42,7 @@ public enum DimAutoStyle
     ///         The corresponding dimensions of the <see cref="View.Subviews"/> will be ignored.
     ///     </para>
     /// </summary>
-    Text = 2
+    Text = 1
 }
 
 /// <summary>