mirror of
https://github.com/gui-cs/Terminal.Gui.git
synced 2025-12-26 15:57:56 +01:00
Reformat to run CI again
This commit is contained in:
@@ -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/>
|
||||||
|
|||||||
Reference in New Issue
Block a user