fix(web): make right panel tabs easier to scroll - #9461
Merged
maria-rcks merged 2 commits intoSep 3, 2026
Merged
Conversation
Contributor
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.
Contributor
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. |
github-actions Bot
added a commit
to omarcresp/t3code-flake
that referenced
this pull request
Sep 4, 2026
## 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
4 tasks
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.

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.