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 e86cdd8 commit ede257bCopy full SHA for ede257b
src/vs/editor/contrib/hover/browser/hover.ts
@@ -216,12 +216,14 @@ export class ModesHoverController implements IEditorContribution {
216
this._glyphWidget.startShowingAt(target.position.lineNumber);
217
return;
218
}
219
- if (this._contentWidget?.isFocused()) {
+ if (
220
+ this._contentWidget?.isFocused()
221
+ || this._contentWidget?.widget.isResizing
222
+ || _sticky
223
+ ) {
224
225
- if (!this._contentWidget?.widget.isResizing && !_sticky) {
- this._hideWidgets();
- }
226
+ this._hideWidgets();
227
228
229
private _onKeyDown(e: IKeyboardEvent): void {
0 commit comments