fix: preserve code block toolbar visibility during chat streaming#307978
Merged
roblourens merged 1 commit intomicrosoft:mainfrom Apr 7, 2026
Merged
Conversation
…crosoft#255290) Add JavaScript-based hover tracking to CodeBlockPart so the toolbar remains clickable through DOM detach/reattach cycles during streaming.
vijayupadya
approved these changes
Apr 7, 2026
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.
Fixes #255290
https://github.com/microsoft/vscode/wiki/How-to-Contribute#pull-requests
Summary
Bug: The copy button on code snippets in chat responses was unclickable while the AI was still streaming, because the toolbar would flicker and lose interactivity.
Root Cause: During streaming, code block DOM elements are briefly detached and reattached as markdown is re-rendered. This causes the browser to lose CSS
:hoverstate, which in turn hides the toolbar (due to apointer-events: nonerule on the non-hovered state). The toolbar becomes invisible and unclickable mid-stream.Fix: Added JavaScript-based hover tracking (
mouseenter/mouseleavelisteners) toCodeBlockPartthat toggles aforce-visibilityclass on the toolbar element. This class persists across DOM detach/reattach cycles, keeping the toolbar visible and clickable even while streaming. The hover state is also restored in the render path so that re-renders during streaming preserve toolbar visibility.Changes
src/vs/workbench/contrib/chat/browser/widget/chatContentParts/codeBlockPart.ts: Added_isHoveredboolean andmouseenter/mouseleaveevent listeners that toggleforce-visibilityon the toolbar. Added post-render restore of toolbar visibility when hovered. Integrated with existing dropdown visibility tracking.src/vs/workbench/contrib/chat/test/browser/widget/chatContentParts/chatMarkdownContentPart.test.ts: Added three regression tests verifying that code block content is correctly set during streaming, that re-renders update content properly, and that the code block pool produces correct data across multiple renders.Testing
chatMarkdownContentPart.test.tsthat verify code block text is correctly rendered during streaming and across re-renders