We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c702301 commit 0b240bcCopy full SHA for 0b240bc
src/vs/editor/contrib/hover/browser/hoverAccessibleViews.ts
@@ -202,7 +202,7 @@ export class HoverAccessibleViewProvider extends BaseHoverAccessibleViewProvider
202
203
public provideContent(): string {
204
const hoverContent = this._hoverController.markdownHoverContentAtIndex(this._markdownHoverFocusedIndex);
205
- return hoverContent.length > 0 ? hoverContent : HoverAccessibilityHelpNLS.intro;
+ return hoverContent.length > 0 ? hoverContent : this._hoverController.getWidgetContent() || HoverAccessibilityHelpNLS.intro;
206
}
207
208
public get actions(): IAction[] {
0 commit comments