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 134d9b7 commit 242dfe8Copy full SHA for 242dfe8
lsp-ui-doc.el
@@ -420,9 +420,10 @@ FRAME just below the symbol at point."
420
(- x (- (+ frame-relative-symbol-x width)
421
(frame-outer-width))))
422
x))
423
- (frame-y (or (and (<= height frame-relative-symbol-y)
424
- (- y height))
425
- (+ y char-height))))
+ (frame-y (+ (or (and (<= height frame-relative-symbol-y)
+ (- y height))
+ (+ y char-height))
426
+ (if (fboundp 'window-tab-line-height) (window-tab-line-height) 0))))
427
(set-frame-position frame (+ start-x frame-x) (+ start-y frame-y))))
428
429
(defun lsp-ui-doc--move-frame (frame)
0 commit comments