From 37ca38a4fbada14761595cc2a641b8dabe8b2fc0 Mon Sep 17 00:00:00 2001 From: Daniel Imms Date: Wed, 1 Jul 2020 08:03:09 -0700 Subject: [PATCH] Add note about re-using options objects Fixes #101495 --- src/vs/workbench/services/hover/browser/hover.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/vs/workbench/services/hover/browser/hover.ts b/src/vs/workbench/services/hover/browser/hover.ts index 1602396e2dd..a504b379d65 100644 --- a/src/vs/workbench/services/hover/browser/hover.ts +++ b/src/vs/workbench/services/hover/browser/hover.ts @@ -16,7 +16,7 @@ export interface IHoverService { readonly _serviceBrand: undefined; /** - * Shows a hover. + * Shows a hover, provided a hover with the same options object is not already visible. * @param options A set of options defining the characteristics of the hover. * @param focus Whether to focus the hover (useful for keyboard accessibility). *