Controls, Startup&Driver improvements

This commit is contained in:
2023-08-09 11:54:32 +02:00
parent 2528487ff6
commit d549733b71
49 changed files with 875 additions and 120 deletions

View File

@@ -45,9 +45,11 @@ public class EventLoop : IEventLoop
viewsToRender = _viewsToRender.ToList();
}
var size =_applicationContext.ConsoleDriver.GetBufferSize();
foreach (var view in viewsToRender)
{
view.Render(new Position(0, 0));
view.Attached = true;
view.Render(new Position(0, 0), size);
}
}