made the splash screen always be a dialog box

svn: r17810
This commit is contained in:
Robby Findler 2010-01-25 12:39:38 +00:00
parent fee5ed923d
commit aee10699ae

View File

@ -280,19 +280,11 @@
(define quit-on-close? #t)
(define splash-tlw%
(case (system-type)
[(unix)
(class dialog%
(define/augment (on-close)
(when quit-on-close?
(exit)))
(super-new))]
[else
(class frame%
(define/augment (on-close)
(when quit-on-close?
(exit)))
(super-new [style '(no-resize-border)]))]))
(class dialog%
(define/augment (on-close)
(when quit-on-close?
(exit)))
(super-new)))
(define splash-canvas%
(class canvas%