2
0
Tig 1 жил өмнө
parent
commit
77f98306e0

+ 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 ();
             }
         }