fix(tmux): address review feedback for split/defer reliability

This commit is contained in:
liu-qingyuan
2026-02-19 00:18:39 +08:00
parent 541f0d354d
commit d2dc25e567
4 changed files with 19 additions and 4 deletions
@@ -30,6 +30,9 @@ function resolveMinPaneWidth(options?: CapacityOptions): number {
if (typeof options === "number") {
return Math.max(1, options)
}
if (options && typeof options.agentPaneWidth === "number") {
return Math.max(1, options.agentPaneWidth)
}
return MIN_PANE_WIDTH
}