Reformat to run CI again

This commit is contained in:
BDisp
2025-07-24 00:14:12 +01:00
parent 6ec4adcc45
commit 3efad83f52

View File

@@ -232,20 +232,22 @@ public class ApplicationV2 : ApplicationImpl
if (Application.MainThreadId == Thread.CurrentThread.ManagedThreadId)
{
action ();
// Ensure the action is executed and forces LayoutAndDrawImpl
Application.LayoutAndDrawImpl (true);
return;
}
_timedEvents.Add (TimeSpan.Zero,
() =>
{
action ();
_timedEvents.Add (
TimeSpan.Zero,
() =>
{
action ();
return false;
}
);
return false;
}
);
}
/// <inheritdoc/>