Uh oh!
There was an error while loading. Please reload this page.
fix(web): make right panel tabs easier to scroll - #9461
Conversation
There was a problem hiding this comment.
Cursor Bugbot has reviewed your changes using default effort and found 2 potential issues.
❌ Bugbot Autofix is OFF. To automatically fix reported issues with cloud agents, enable autofix in the Cursor dashboard.
Reviewed by Cursor Bugbot for commit b586983. Configure here.
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
ApprovabilityVerdict: Approved at Macroscope's review found this PR approvable — This is a localized right-panel UX adjustment that adds overflow-aware tab scrolling and controls without changing application data, defaults, or broader workflows. The runtime impact is confined to tab navigation and Electron title-bar hit-testing. You can add or adjust custom eligibility rules. Learn more. |
Uh oh!
There was an error while loading. Please reload this page.
## What's Changed * fix(web): make right panel tabs easier to scroll by @maria-rcks in pingdotgg/t3code#9461 * fix(web): render transparent previews on white by @UtkarshUsername in pingdotgg/t3code#9463 * fix(mobile): show loading and syncing in the working pill by @juliusmarminge in pingdotgg/t3code#9466 * fix(server): keep a/ and b/ prefixes in rendered git patches by @Mnigos in pingdotgg/t3code#9438 * fix(server): full-access OpenCode threads no longer ask for approvals by @shivamhwp in pingdotgg/t3code#9282 * fix(web): reuse pull request list data while loading by @maria-rcks in pingdotgg/t3code#9467 * feat(web): let users turn off composer collapse on blur and scroll by @juliusmarminge in pingdotgg/t3code#9469 ## New Contributors * @Mnigos made their first contribution in pingdotgg/t3code#9438 **Full Changelog**: pingdotgg/t3code@v0.0.39-nightly.20260903.1272...v0.0.39-nightly.20260903.1273 Upstream release: https://github.com/pingdotgg/t3code/releases/tag/v0.0.39-nightly.20260903.1273

Horizontal overflow in the right-panel tabs was difficult to navigate with a Mac trackpad and inaccessible to ordinary mouse wheels. The strip now consumes either wheel axis consistently, keeps the Electron drag region away from the scrolling surface, and shows edge-aware scroll arrows only when tabs overflow. Verified with the web typecheck, focused lint and format checks, the existing RightPanelTabs tests, and real-app wheel and arrow passes at desktop and responsive sheet sizes.
Before
t3-tab-scroll-before.webm
After
t3-tab-scroll-after.webm
Built by gpt-5.6-sol in the Codex harness.
Note
Low Risk
Localized UI interaction changes in
RightPanelTabswith no auth, data, or API impact; main risk is wheel/drag-region edge cases on Electron.Overview
Improves horizontal navigation when the right-panel tab strip overflows.
Wheel and trackpad: The tab list viewport now maps the dominant wheel delta (horizontal or vertical) into horizontal scroll, with
preventDefaultonly when scrolling actually moves—so mouse wheels and awkward trackpad gestures can move tabs without relying on hidden scrollbars.Overflow UI: A
ResizeObserverplus scroll listeners track overflow and edge position; when tabs don't fit, left/right chevron buttons appear (disabled at the ends) and scroll by ~75% of the viewport width, respectingprefers-reduced-motion. Active-tabscrollIntoViewruns only when overflow is present.Electron title bar: The window drag region sits on the outer tab bar while the scrollable
ScrollAreais marked no-drag, so users can scroll tabs without fighting window dragging on desktop.Reviewed by Cursor Bugbot for commit 238a84d. Bugbot is set up for automated code reviews on this repo. Configure here.
Note
Add scroll buttons and wheel-scroll support to
RightPanelTabsRightPanelTabsthat appear when tabs overflow, disabling at the scroll boundaries.ScrollAreato the surrounding tab bar, marking the viewport and buttons as no-drag.preventDefaulton the tab viewport inRightPanelTabs.tsx, which could block page scrolling if the container's overflow state changes.Macroscope summarized 238a84d.