mod(renderer): store absolut screen size for view change to report current screen size accordingly
Some checks failed
Zig Project Action / Lint, Spell-check and test zig project (push) Failing after 1m21s

This commit is contained in:
2025-01-14 17:08:19 +01:00
parent 3048b59e84
commit 2efbb5feb1
2 changed files with 7 additions and 2 deletions

View File

@@ -131,6 +131,8 @@ pub fn main() !void {
switch (e) {
.tui => {
view = tui_view;
// NOTE: report potentially new screen size
view.handle(.{ .resize = renderer.size });
},
}
},