feat(desktop): hover tooltips on status bar items - #41967
Closed
marsmensch wants to merge 1 commit into
Closed
Conversation
marsmensch
force-pushed
the
feat/desktop-status-bar-hover-tooltips
branch
from
June 8, 2026 09:46
b61c139 to
273a152
Compare
Statusbar items now show Radix tooltips on hover. Previously the
`title` field on `StatusbarItem` was wired into i18n copy but never
forwarded to the DOM — items had no hover feedback at all.
Changes:
- statusbar-controls.tsx: import `Tip` from `@/components/ui/tooltip`
and wrap every rendered variant (menu trigger, text div, link anchor,
action button) with `<Tip label={item.title}>`. Tip is already the
established drop-in for native `title=` across the codebase.
- use-statusbar-items.tsx: replace the sparse `providerModelTitle` /
`modelTitle` strings on `model-summary` with a new `modelDetailTitle`
key that also includes the active reasoning effort and fast mode state,
so hovering the model chip shows e.g. "openrouter · claude-sonnet-4-6
· Med · Fast mode on" instead of just the provider+model pair.
- i18n/types.ts: add `modelDetailTitle(provider, model, effort, fastMode)`
to the statusbar copy interface.
- i18n/en.ts, zh.ts, zh-hant.ts: implement the key in all three locales.
marsmensch
force-pushed
the
feat/desktop-status-bar-hover-tooltips
branch
from
June 8, 2026 09:47
273a152 to
d185cf2
Compare
19 tasks
Contributor
|
Thanks for the statusbar-tooltip work. This is now implemented on
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
All status bar items now show a Radix tooltip on hover. The
titlefield onStatusbarItemwas populated in i18n copy but never forwarded to the DOM — items had no hover feedback.The model chip tooltip is also enriched to include provider, reasoning effort, and fast-mode state so users can inspect the active configuration without opening the model picker.
Changes
statusbar-controls.tsx: importTip(the codebase's established drop-in fortitle=) and wrap every rendered variant — menu trigger, text div, link, action button — with<Tip label={item.title}>use-statusbar-items.tsx: replaceproviderModelTitle/modelTitleonmodel-summarywith newmodelDetailTitlekey that includes effort and fast mode; importreasoningEffortLabeli18n/types.ts,en.ts,zh.ts,zh-hant.ts: addmodelDetailTitle(provider, model, effort, fastMode)to the statusbar copy sectionValidation
Tipopenrouter · claude-sonnet-4-6openrouter · claude-sonnet-4-6 · Med(fast mode appended when active)tscin changed filesnpm run build+electron .