You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Can't scroll up during word streaming - a genuine upward scroll now disarms auto-follow as soon as you move more than a few pixels off the bottom, instead of requiring 150px. The old dead zone re-classified each wheel tick as "at bottom" and the next streamed chunk yanked the view back down before a second tick could land.
View jumping to bottom mid-stream - removed a second per-chunk scroll writer in the terminal pane that raced the virtualized list's auto-scroll; the view no longer gets pulled back down after you scroll up. Auto-scroll now has a single owner (VirtualizedOutputList).
Technical Details
AgentTerminalPane and VirtualizedOutputList now disarm auto-follow on any upward move with distanceFromBottom > 4px (previously gated behind a 150px "at bottom" dead zone).
Removed the output-length-keyed scroll effect in AgentTerminalPane so VirtualizedOutputList is the sole scrollTop writer.