-
Notifications
You must be signed in to change notification settings - Fork 3.6k
v0.9.0 UX: model picker shows awkward single-row range titles #3995
Copy link
Copy link
Closed
Labels
agent-readySelf-contained for a fresh-clone cloud agent; implement in a tested PR with no live credentialsSelf-contained for a fresh-clone cloud agent; implement in a tested PR with no live credentialsbugSomething isn't workingSomething isn't workinglane-catalogv0.9.0 delivery lane (retired)v0.9.0 delivery lane (retired)reliabilityReliability, flaky behavior, retries, fallbacks, and robustnessReliability, flaky behavior, retries, fallbacks, and robustnesstuiTerminal UI behavior, rendering, or interactionTerminal UI behavior, rendering, or interactionuxUser experience, interaction, or presentation polishUser experience, interaction, or presentation polishv0.9.0Targeting v0.9.0Targeting v0.9.0
Milestone
Description
Activity
Metadata
Metadata
Assignees
Labels
agent-readySelf-contained for a fresh-clone cloud agent; implement in a tested PR with no live credentialsSelf-contained for a fresh-clone cloud agent; implement in a tested PR with no live credentialsbugSomething isn't workingSomething isn't workinglane-catalogv0.9.0 delivery lane (retired)v0.9.0 delivery lane (retired)reliabilityReliability, flaky behavior, retries, fallbacks, and robustnessReliability, flaky behavior, retries, fallbacks, and robustnesstuiTerminal UI behavior, rendering, or interactionTerminal UI behavior, rendering, or interactionuxUser experience, interaction, or presentation polishUser experience, interaction, or presentation polishv0.9.0Targeting v0.9.0Targeting v0.9.0
Projects
- StatusShow more project fieldsDone
Summary
When a scrollable picker pane has exactly one visible row, the model picker title still renders a range like
Model 2-2/3. That is technically accurate but reads awkwardly and looks like a formatting bug; it should read like a single position, e.g.Model 2/3.Evidence
Isolated installed-build capture:
The Thinking pane in the same capture has multiple visible rows, so
Thinking 3-4/4is fine. The bug is the single-visible-row case.Source pointer:
crates/tui/src/tui/model_picker.rs:render_paneformatsstart + 1throughendwhenever the pane is scrollable.Acceptance
{title} N/total, not{title} N-N/total.{title} 3-4/4.Notes
Visual polish only; model selection behavior is not implicated.