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

@@ -810,7 +810,7 @@ public class MainLoopTests
btn.Text = "Cancel";
Interlocked.Increment (ref total);
btn.SetNeedsDisplay ();
btn.SetNeedsDraw ();
await Task.Run (
() =>
@@ -857,7 +857,7 @@ public class MainLoopTests
{
btn.Text = "Pew Pew";
Interlocked.Increment (ref total);
btn.SetNeedsDisplay ();
btn.SetNeedsDraw ();
}
);
}
@@ -907,7 +907,7 @@ public class MainLoopTests
{
btn.Text = "Click Me";
Interlocked.Increment (ref total);
btn.SetNeedsDisplay ();
btn.SetNeedsDraw ();
}
);
}