limit font sizes to exact integers in [0,255]
This commit is contained in:
parent
a2152d5666
commit
b528e0e682
|
@ -242,10 +242,10 @@
|
||||||
(non-empty-listof (list/c exact-nonnegative-integer?
|
(non-empty-listof (list/c exact-nonnegative-integer?
|
||||||
exact-nonnegative-integer?))
|
exact-nonnegative-integer?))
|
||||||
;; the font size for that configuration
|
;; the font size for that configuration
|
||||||
exact-nonnegative-integer?
|
(integer-in 0 255)
|
||||||
#:flat? #t)
|
#:flat? #t)
|
||||||
;; default font size, when none of the configs above apply
|
;; default font size, when none of the configs above apply
|
||||||
exact-nonnegative-integer?
|
(integer-in 0 255)
|
||||||
#:flat? #t))
|
#:flat? #t))
|
||||||
|
|
||||||
(preferences:set-un/marshall
|
(preferences:set-un/marshall
|
||||||
|
|
Loading…
Reference in New Issue
Block a user