Force rerender on visibility change

This commit is contained in:
2023-08-12 09:09:17 +02:00
parent 1fde0df2d6
commit 16bdc1ed40
20 changed files with 292 additions and 147 deletions

View File

@@ -6,10 +6,10 @@ namespace TerminalUI;
public interface IApplicationContext
{
IEventLoop EventLoop { get; init; }
IRenderEngine RenderEngine { get; }
bool IsRunning { get; set; }
IConsoleDriver ConsoleDriver { get; init; }
ILoggerFactory? LoggerFactory { get; init; }
char EmptyCharacter { get; init; }
IFocusManager FocusManager { get; init; }
IConsoleDriver ConsoleDriver { get; }
ILoggerFactory? LoggerFactory { get; }
char EmptyCharacter { get; }
IFocusManager FocusManager { get; }
}