File tree 1 file changed +3
-3
lines changed
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -258,7 +258,7 @@ CURRENT is non-nil when the point is on the symbol."
258
258
(add-face-text-property 0 len 'lsp-ui-sideline-global nil str)
259
259
(concat
260
260
(propertize " " 'display `(space :align-to (- right-fringe ,(lsp-ui-sideline--align len margin))))
261
- str)))
261
+ ( propertize str 'display '(height 1 )) )))
262
262
263
263
(defun lsp-ui-sideline--check-duplicate (symbol info )
264
264
" Check if there's already a SYMBOL containing INFO, unless `lsp-ui-sideline-ignore-duplicate'
@@ -367,7 +367,7 @@ Push sideline overlays on `lsp-ui-sideline--ovs'."
367
367
(add-face-text-property 0 len face nil message)
368
368
message))
369
369
(string (concat (propertize " " 'display `(space :align-to (- right-fringe ,(lsp-ui-sideline--align len margin))))
370
- message))
370
+ ( propertize message 'display '(height 1 )) ))
371
371
(pos-ov (lsp-ui-sideline--find-line len bol eol nil offset))
372
372
(ov (and pos-ov (make-overlay (car pos-ov) (car pos-ov)))))
373
373
(when pos-ov
@@ -412,7 +412,7 @@ Push sideline overlays on `lsp-ui-sideline--ovs'."
412
412
(add-text-properties 0 len `(keymap , keymap mouse-face highlight ) title)
413
413
title))
414
414
(string (concat (propertize " " 'display `(space :align-to (- right-fringe ,(lsp-ui-sideline--align len margin))))
415
- title))
415
+ ( propertize title 'display '(height 1 )) ))
416
416
(pos-ov (lsp-ui-sideline--find-line (1+ (length title)) bol eol t ))
417
417
(ov (and pos-ov (make-overlay (car pos-ov) (car pos-ov)))))
418
418
(when pos-ov
You can’t perform that action at this time.
0 commit comments