From 092671adda819ee6b59e7947c8742251bf0d7f2f Mon Sep 17 00:00:00 2001 From: "R.Eugenio" Date: Wed, 31 Dec 2025 20:51:16 +0100 Subject: [PATCH] chore: Eliminar debug print en drawPanelFrame MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 --- src/core/context.zig | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/core/context.zig b/src/core/context.zig index b2e61b7..903bd6d 100644 --- a/src/core/context.zig +++ b/src/core/context.zig @@ -670,7 +670,8 @@ pub const Context = struct { const border_color: ?Style.Color = blk: { if (config.base_color) |base| { const derived = Style.derivePanelFrameColors(base); - break :blk if (config.has_focus) derived.border_focus else derived.border_unfocus; + const bc = if (config.has_focus) derived.border_focus else derived.border_unfocus; + break :blk bc; } break :blk config.border_color; };