File tree 2 files changed +5
-2
lines changed
2 files changed +5
-2
lines changed Original file line number Diff line number Diff line change 2
2
** Unreleased
3
3
- Disable sideline code actions and doc on cursor hover to reduce noise features.
4
4
5
+ ** 8.0.1
6
+ - Fix sideline alignment with text-scale (#719)
7
+
5
8
** 8.0.0
6
9
- lsp-ui version working with lsp-mode v8.0.0
7
10
Original file line number Diff line number Diff line change @@ -299,13 +299,13 @@ MARKED-STRING is the string returned by `lsp-ui-sideline--extract-info'."
299
299
(+ (apply '+ lengths)
300
300
(if (display-graphic-p ) 1 2 )))
301
301
302
- (defun lsp-ui-sideline--compute-height nil
302
+ (defun lsp-ui-sideline--compute-height ()
303
303
" Return a fixed size for text in sideline."
304
304
(if (null text-scale-mode-remapping)
305
305
'(height 1 )
306
306
; ; Readjust height when text-scale-mode is used
307
307
(list 'height
308
- (/ 1 (or (plist-get (cdr text-scale-mode-remapping) :height )
308
+ (/ 1 (or (plist-get (cdar text-scale-mode-remapping) :height )
309
309
1 )))))
310
310
311
311
(defun lsp-ui-sideline--make-display-string (info symbol current )
You can’t perform that action at this time.
0 commit comments