emacs-eaf / eaf-browser

A modern, customizable and extensible browser in Emacs
GNU General Public License v3.0
129 stars 26 forks source link

fix type error when update mode-line position #35

Closed ctrl2wei closed 2 years ago

ctrl2wei commented 2 years ago

mode-line face 的 height 属性可以为多种类型,因此下面代码中 mode_line_height 也可能会是几种不同类型(float,int,sexpdata.Symbol) https://github.com/emacs-eaf/eaf-browser/blob/fb5ef142aa628d4d21667907df996b7075007e20/buffer.py#L210-L217

这个补丁设置如果 (face-attribute 'mode-line :height) 返回 unspecified, 则 eaf-get-mode-line-height 返回 1.0 。

manateelazycat commented 2 years ago

Thanks