Hello, The title says it all, but here is also a code snip:
(require racket/gui)
(define frame (new frame% (label "test")))
(define slider
(new slider%
(label "")
(parent frame)
(min-value 1)
(max-value 1)))
(display (send slider get-value))
It prints "0", and this is a sign of violation
of the invariant min-value <= init-value <= max-value.
Passing (init-value 1) does not help.
Best regards,
Dmitry
____________________
Racket Users list:
http://lists.racket-lang.org/users

