original commit: a5e3ede8f966e24dfa9f19736b9443c9c803012e
This commit is contained in:
Matthew Flatt 2003-06-02 01:24:43 +00:00
parent 205f1d4063
commit b032c32123

View File

@ -91,7 +91,7 @@
(define mask (new choice%
[label "Alpha"]
[choices '("Auto" "Mask" "Alpha")]
[choices '("Auto" "Mask")]
[parent f]
[callback (lambda (c e) (refresh))]))
(define bg (new choice%
@ -131,8 +131,7 @@
(define (get-mask-mode)
(case (send mask get-selection)
[(0) 'unknown]
[(1) 'unknown/mask]
[(2) 'unknown/alpha]))
[(1) 'unknown/mask]))
(define get-bg-color
(let ([white (make-object color% 255 255 255)]