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) if (Application.MainThreadId == Thread.CurrentThread.ManagedThreadId)
{ {
action (); action ();
// Ensure the action is executed and forces LayoutAndDrawImpl // Ensure the action is executed and forces LayoutAndDrawImpl
Application.LayoutAndDrawImpl (true); Application.LayoutAndDrawImpl (true);
return; return;
} }
_timedEvents.Add (TimeSpan.Zero, _timedEvents.Add (
() => TimeSpan.Zero,
{ () =>
action (); {
action ();
return false; return false;
} }
); );
} }
/// <inheritdoc/> /// <inheritdoc/>