Skip to content

v1.150.3

Choose a tag to compare

@deivid11 deivid11 released this 11 Jul 06:03

What's New

Fixed

  • 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.