Skip to content

Commit

Permalink
Use default child frame border face
Browse files Browse the repository at this point in the history
  • Loading branch information
wyuenho committed Nov 11, 2024
1 parent c3e9066 commit 3376567
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion lsp-mode.el
Original file line number Diff line number Diff line change
Expand Up @@ -5797,7 +5797,10 @@ RENDER-ALL - nil if only the signature should be rendered."
(list :position (point)
:background-color (face-attribute 'lsp-signature-posframe :background nil t)
:foreground-color (face-attribute 'lsp-signature-posframe :foreground nil t)
:border-color (face-attribute 'font-lock-comment-face :foreground nil t))))
:border-color (face-attribute (if (facep 'child-frame-border)
'child-frame-border
'internal-border)
:background nil t))))
(posframe-hide " *lsp-signature*")))

(defun lsp--handle-signature-update (signature)
Expand Down

0 comments on commit 3376567

Please sign in to comment.