reverted diag stuff that broke unit tests

This commit is contained in:
Tig
2024-10-24 21:27:51 -06:00
parent 1c429daf34
commit fa37103472
3 changed files with 0 additions and 4 deletions

View File

@@ -498,7 +498,6 @@ public static partial class Application // Run (Begin, Run, End, Stop)
/// <param name="forceRedraw">If <see langword="true"/> the entire View hierarchy will be redrawn. The default is <see langword="false"/> and should only be overriden for testing.</param>
public static void Refresh (bool forceRedraw = false)
{
Debug.WriteLine($"Refresh Top = {Top.Id}");
bool clear = false;
foreach (Toplevel tl in TopLevels.Reverse ())
{

View File

@@ -268,8 +268,6 @@ public partial class View // Drawing APIs
// We assume that the text has been drawn over the entire area; ensure that the subviews are redrawn.
SetSubViewNeedsDisplay ();
Debug.WriteLine($"DrawText: {Id}");
}
#endregion DrawText

View File

@@ -382,7 +382,6 @@ public static class MessageBox
var d = new Dialog
{
Id = "MessageBox",
Title = title,
ButtonAlignment = MessageBox.DefaultButtonAlignment,
ButtonAlignmentModes = AlignmentModes.StartToEnd | AlignmentModes.AddSpaceBetweenItems,