Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/microsoft/vscode.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'src/vs/workbench/services/hover/browser/hover.ts')
-rw-r--r--src/vs/workbench/services/hover/browser/hover.ts3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/vs/workbench/services/hover/browser/hover.ts b/src/vs/workbench/services/hover/browser/hover.ts
index c22832f9755..074b8203b5e 100644
--- a/src/vs/workbench/services/hover/browser/hover.ts
+++ b/src/vs/workbench/services/hover/browser/hover.ts
@@ -33,7 +33,8 @@ export interface IHoverService {
showHover(options: IHoverOptions, focus?: boolean): IHoverWidget | undefined;
/**
- * Hides the hover if it was visible.
+ * Hides the hover if it was visible. This call will be ignored if the the hover is currently
+ * "locked" via the alt/option key.
*/
hideHover(): void;
}