From e6cc1c35f9dfce5f3ae0fc64ca7d57c7586e00a2 Mon Sep 17 00:00:00 2001 From: CJ van den Berg Date: Fri, 10 Oct 2025 15:38:49 +0200 Subject: [PATCH] fix: rendering of tab bar background --- src/tui/status/tabs.zig | 1 + 1 file changed, 1 insertion(+) diff --git a/src/tui/status/tabs.zig b/src/tui/status/tabs.zig index 84e7950..f498108 100644 --- a/src/tui/status/tabs.zig +++ b/src/tui/status/tabs.zig @@ -100,6 +100,7 @@ pub const TabBar = struct { fn init(allocator: std.mem.Allocator, parent: Plane, event_handler: ?EventHandler, min_tabs: ?usize) !Self { var w = try WidgetList.createH(allocator, parent, "tabs", .dynamic); + w.render_decoration = null; w.ctx = w; const tab_style, const tab_style_bufs = root.read_config(Style, allocator); return .{