mirror of
https://github.com/microsoft/vscode.git
synced 2026-09-24 16:35:55 +01:00
debug: cancel hover evaluate requests when hovering off dialog
Fixes https://github.com/microsoft/vscode/issues/91457
This commit is contained in:
@@ -355,7 +355,7 @@ export class DebugEditorContribution implements IDebugEditorContribution {
|
||||
}
|
||||
|
||||
private hideHoverWidget(): void {
|
||||
if (!this.hideHoverScheduler.isScheduled() && this.hoverWidget.isVisible()) {
|
||||
if (!this.hideHoverScheduler.isScheduled() && this.hoverWidget.willBeVisible()) {
|
||||
this.hideHoverScheduler.schedule();
|
||||
}
|
||||
this.showHoverScheduler.cancel();
|
||||
|
||||
Reference in New Issue
Block a user