re-unbreak DrRacket
This commit is contained in:
parent
704c320131
commit
bef9e11272
|
@ -132,10 +132,10 @@
|
||||||
[(currently-the-weekend?)
|
[(currently-the-weekend?)
|
||||||
weekend-bitmap-spec]
|
weekend-bitmap-spec]
|
||||||
[else normal-bitmap-spec]))
|
[else normal-bitmap-spec]))
|
||||||
(define the-splash-bitmap (if (path? the-bitmap-spec)
|
|
||||||
(read-bitmap the-bitmap-spec)
|
(define the-splash-bitmap (and (path? the-bitmap-spec) (read-bitmap the-bitmap-spec)))
|
||||||
the-bitmap-spec))
|
(when the-splash-bitmap
|
||||||
(set-splash-char-observer drracket-splash-char-observer)
|
(set-splash-char-observer drracket-splash-char-observer))
|
||||||
|
|
||||||
(when (eq? (system-type) 'macosx)
|
(when (eq? (system-type) 'macosx)
|
||||||
(define initial-state (current-icon-state))
|
(define initial-state (current-icon-state))
|
||||||
|
@ -171,7 +171,8 @@
|
||||||
(set-icon next-state))
|
(set-icon next-state))
|
||||||
(loop next-state))))))
|
(loop next-state))))))
|
||||||
|
|
||||||
(start-splash the-splash-bitmap
|
(start-splash (or the-splash-bitmap
|
||||||
|
the-bitmap-spec)
|
||||||
"DrRacket"
|
"DrRacket"
|
||||||
700
|
700
|
||||||
#:allow-funny? #t
|
#:allow-funny? #t
|
||||||
|
|
Loading…
Reference in New Issue
Block a user