Internal 'pointer press' tracking in the terminal UI was renamed to 'click' tracking and made asynchronous
Internal names used for tracking mouse clicks in Claude Code's terminal interface were renamed: pressListeners, subscribePointerPresses, and tellPressedNowhere are now clickListeners, subscribeClicks, and tellClickedNowhere. The 'clicked nowhere' event (fired when a click lands outside any tracked element) is now dispatched via queueMicrotask, deferring it slightly, and it now passes two null arguments instead of one.
This is an internal rename and timing change to how click events are dispatched; it does not describe a new capability for users, though deferring the dispatch may change the order in which click-related events fire.
The finding does not say what effect the deferred dispatch or the extra null argument has for a user.