소스 검색

Removed debug code

Tig 1 년 전
부모
커밋
77f98306e0
1개의 변경된 파일0개의 추가작업 그리고 6개의 파일을 삭제
  1. 0 6
      Terminal.Gui/View/ViewDrawing.cs

+ 0 - 6
Terminal.Gui/View/ViewDrawing.cs

@@ -495,18 +495,12 @@ public partial class View
                                                                      view => view.Visible
                                                                              && (view.NeedsDisplay || view.SubViewNeedsDisplay || view.LayoutNeeded)
                                                                     );
-
             foreach (View view in subviewsNeedingDraw)
             {
                 if (view.LayoutNeeded)
                 {
                     view.LayoutSubviews ();
                 }
-
-                // Draw the subview
-                if (view.Title.Contains ("This label"))
-                { }
-
                 view.Draw ();
             }
         }