From a632305a6fbf5452a1ea875be974f88c022d1255 Mon Sep 17 00:00:00 2001 From: CJ van den Berg Date: Thu, 15 Jan 2026 20:12:17 +0100 Subject: [PATCH] refactor: tab rendering --- src/tui/status/tabs.zig | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/tui/status/tabs.zig b/src/tui/status/tabs.zig index 011e663..5ba1ae5 100644 --- a/src/tui/status/tabs.zig +++ b/src/tui/status/tabs.zig @@ -159,7 +159,8 @@ pub const TabBar = struct { }); self.plane.fill(" "); self.plane.home(); - return self.widget_list_widget.render(theme); + for (self.tabs) |*tab| _ = tab.widget.render(theme); + return false; } pub fn receive(self: *Self, _: tp.pid_ref, m: tp.message) error{Exit}!bool {