Skip to content

Commit 269e80e

Browse files
committed
Use default font for the labels in symbols view
1 parent ca80749 commit 269e80e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lsp-treemacs.el

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -419,7 +419,7 @@
419419
:render-action
420420
(treemacs-render-node
421421
:icon (lsp-treemacs--symbol-icon item nil)
422-
:label-form (gethash "name" item)
422+
:label-form (propertize (gethash "name" item) 'face 'default)
423423
:state treemacs-lsp-symbol-closed-state
424424
:key-form (gethash "name" item)
425425
:more-properties (:symbol item)))
@@ -438,7 +438,7 @@
438438
:render-action
439439
(treemacs-render-node
440440
:icon (lsp-treemacs--symbol-icon item nil)
441-
:label-form (gethash "name" item)
441+
:label-form (propertize (gethash "name" item) 'face 'default)
442442
:state treemacs-lsp-symbol-closed-state
443443
:key-form (gethash "name" item)
444444
:more-properties (:symbol item))

0 commit comments

Comments
 (0)