escape no longer quits during splash screen, not control-q does
svn: r17869
This commit is contained in:
parent
b5cada4811
commit
076d680faa
|
@ -78,7 +78,9 @@
|
||||||
(set-splash-char-observer
|
(set-splash-char-observer
|
||||||
(λ (evt)
|
(λ (evt)
|
||||||
(let ([ch (send evt get-key-code)])
|
(let ([ch (send evt get-key-code)])
|
||||||
(when (equal? ch 'escape) (exit))
|
(when (and (eq? ch #\q)
|
||||||
|
(send evt get-control-down))
|
||||||
|
(exit))
|
||||||
(when (char? ch)
|
(when (char? ch)
|
||||||
;; as soon as something is typed, load the bitmaps
|
;; as soon as something is typed, load the bitmaps
|
||||||
(load-magic-images)
|
(load-magic-images)
|
||||||
|
|
Loading…
Reference in New Issue
Block a user