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 deb08ed commit b771576Copy full SHA for b771576
lsp-ui-doc.el
@@ -420,10 +420,12 @@ We don't extract the string that `lps-line' is already displaying."
420
421
(defun lsp-ui-doc--hide-frame (&optional _win)
422
"Hide the frame."
423
- (setq lsp-ui-doc--bounds nil
424
- lsp-ui-doc--from-mouse nil)
425
(lsp-ui-util-safe-delete-overlay lsp-ui-doc--inline-ov)
426
(lsp-ui-util-safe-delete-overlay lsp-ui-doc--highlight-ov)
+ (setq lsp-ui-doc--bounds nil
+ lsp-ui-doc--from-mouse nil
427
+ lsp-ui-doc--inline-ov nil
428
+ lsp-ui-doc--highlight-ov nil)
429
(when-let ((frame (lsp-ui-doc--get-frame)))
430
(when (frame-visible-p frame)
431
(make-frame-invisible frame))))
0 commit comments