NeedsDisplay -> NeedsDraw

This commit is contained in:
Tig
2024-10-27 19:54:50 -07:00
parent 53708fac9e
commit e0551f4e4d
102 changed files with 674 additions and 671 deletions

View File

@@ -200,7 +200,7 @@ public class ThicknessTests (ITestOutputHelper output)
t = new Thickness (1, 1, 1, 1);
r = new Rectangle (1, 1, 40, 15);
top.SetNeedsDisplay ();
top.SetNeedsDraw ();
Application.RunIteration (ref rs);
t.Draw (r, ViewDiagnosticFlags.Ruler, "Test");
@@ -231,7 +231,7 @@ public class ThicknessTests (ITestOutputHelper output)
t = new Thickness (1, 2, 3, 4);
r = new Rectangle (2, 2, 40, 15);
top.SetNeedsDisplay ();
top.SetNeedsDraw ();
Application.RunIteration (ref rs);
t.Draw (r, ViewDiagnosticFlags.Ruler, "Test");
@@ -262,7 +262,7 @@ public class ThicknessTests (ITestOutputHelper output)
t = new Thickness (-1, 1, 1, 1);
r = new Rectangle (5, 5, 40, 15);
top.SetNeedsDisplay ();
top.SetNeedsDraw ();
Application.RunIteration (ref rs);
t.Draw (r, ViewDiagnosticFlags.Ruler, "Test");