Agent teams mode: touch scroll broken over RDP (works in regular mode, same terminal)
Resolved 💬 1 comment Opened Jun 5, 2026 by DodamJake Closed Jul 12, 2026
Bug Description
Touch scrolling does not work in Claude Code agent teams mode over RDP, while it works perfectly in regular Claude Code mode in the exact same terminal window.
Reproduction Steps
- Connect to Windows 11 PC via Android Microsoft Remote Desktop app (touch mode)
- Open Windows Terminal (PowerShell)
- Run
claude(regular mode) — touch scroll works - Exit claude
- In the same terminal window, run
claudein agent teams mode — touch scroll broken - Only the last screen is visible; cannot scroll up via touch
- Switch Android RD Client to mouse pointer mode — scroll works again
- Keyboard PgUp/PgDn — works
Environment
- Claude Code: v2.1.165
- OS: Windows 11 Pro 25H2 (Build 26200.8524)
- Terminal: Windows Terminal 1.24.11321.0
- RDP Client: Microsoft Remote Desktop (Android), touch mode
- GPU: AMD Radeon 780M
- Settings:
CLAUDE_CODE_EXPERIMENTAL_AGENT_TEAMS=1in settings.json env
Analysis
- The issue is not WT rendering (tested: direct2d, software/WARP, disablePartialInvalidation — all ineffective)
CLAUDE_CODE_DISABLE_MOUSE=1does not fix itCLAUDE_CODE_DISABLE_ALTERNATE_SCREEN=1does not fix it (agent mode ignores it)- Regular CC and agent teams mode both use alternate screen buffer, but agent teams mode has a more complex TUI layout that fails to receive/process touch-originated scroll events
- Mouse pointer mode sends standard
WM_MOUSEWHEELwhich works; touch mode sendsWM_TOUCH/WM_POINTERwhich the agent teams TUI doesn't handle
Expected Behavior
Touch scroll should work in agent teams mode the same way it works in regular Claude Code mode.
This issue has 1 comment on GitHub. Read the full discussion on GitHub ↗