make tiny-control-font slightly bigger under Windows
svn: r5750
This commit is contained in:
parent
78a80fe13e
commit
3a158e29b3
|
@ -268,10 +268,13 @@
|
|||
[(windows) 0]
|
||||
[(macosx) 2]
|
||||
[else 1]))
|
||||
(define tiny-delta (case (system-type)
|
||||
[(windows) 1]
|
||||
[else 0]))
|
||||
|
||||
(define normal-control-font (make-object wx:font% (wx:get-control-font-size) 'system))
|
||||
(define small-control-font (make-object wx:font% (- (wx:get-control-font-size) small-delta) 'system))
|
||||
(define tiny-control-font (make-object wx:font% (- (wx:get-control-font-size) 2 small-delta) 'system))
|
||||
(define tiny-control-font (make-object wx:font% (- (wx:get-control-font-size) tiny-delta small-delta) 'system))
|
||||
(define view-control-font (if (eq? 'macosx (system-type))
|
||||
(make-object wx:font% (- (wx:get-control-font-size) 1) 'system)
|
||||
normal-control-font))
|
||||
|
|
Loading…
Reference in New Issue
Block a user