chore: Eliminar debug print en drawPanelFrame
🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
parent
89c7508426
commit
092671adda
1 changed files with 2 additions and 1 deletions
|
|
@ -670,7 +670,8 @@ pub const Context = struct {
|
||||||
const border_color: ?Style.Color = blk: {
|
const border_color: ?Style.Color = blk: {
|
||||||
if (config.base_color) |base| {
|
if (config.base_color) |base| {
|
||||||
const derived = Style.derivePanelFrameColors(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;
|
break :blk config.border_color;
|
||||||
};
|
};
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue