mirror of
https://github.com/goose121/clx-truetype.git
synced 2026-09-10 07:16:25 -04:00
Fix type error when safety is 3
This commit is contained in:
parent
c6e10a918d
commit
e1ab3cbd9e
|
|
@ -5,7 +5,7 @@
|
|||
(defclass font ()
|
||||
((family :type string :initarg :family :accessor font-family :documentation "Font family.")
|
||||
(subfamily :type string :initarg :subfamily :accessor font-subfamily :documentation "Font subfamily. For e.g. regular, italic, bold, bold italib.")
|
||||
(size :type numeric :initarg :size :accessor font-size :initform 12 :documentation "Font size in points.")
|
||||
(size :type real :initarg :size :accessor font-size :initform 12 :documentation "Font size in points.")
|
||||
(underline :type boolean :initarg :underline :initform nil :accessor font-underline :documentation "Draw line under text string.")
|
||||
(strikethrough :type boolean :initarg :strikethrough :initform nil :accessor font-strikethrough :documentation "Draw strike through text string.")
|
||||
(overline :type boolean :initarg :overline :initform nil :accessor font-overline :documentation "Draw line over text string.")
|
||||
|
|
|
|||
Loading…
Reference in a new issue