refactor(terminal): render terminal unfocused state

This commit is contained in:
CJ van den Berg 2026-02-25 09:36:22 +01:00
parent 43b46d179f
commit 5c2ae84602
Signed by: neurocyte
GPG key ID: 8EB1E1BB660E3FB9
2 changed files with 3 additions and 3 deletions

View file

@ -215,7 +215,7 @@ pub fn render(self: *Self, _: *const Widget.Theme) bool {
}
// Blit the terminal's front screen into our vaxis.Window.
self.vt.draw(self.allocator, self.plane.window) catch |e| {
self.vt.draw(self.allocator, self.plane.window, self.focused) catch |e| {
std.log.err("terminal_view: draw failed: {}", .{e});
};