Removed debug code

This commit is contained in:
Tig
2024-04-15 13:56:49 -06:00
parent 68e37d0d1c
commit 77f98306e0

View File

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