[racket-dev] Pre-Release Checklist for v5.1
Two hours ago, Eli Barzilay wrote:
>
> Seems like there's a bigger problem -- on linux the games dialog
> doesn't have the icons on the game buttons.
If I run the following on windows it works, but on linux (I tried
three different setups) I get the label without the bitmap.
#lang racket/gui
(define f (new frame% [label "Foo"]))
(new button%
[label (list (read-bitmap
(build-path (collection-path "games/mines") "mines.png"))
"Foo"
'left)]
[parent f])
(send f show #t)
--
((lambda (x) (x x)) (lambda (x) (x x))) Eli Barzilay:
http://barzilay.org/ Maze is Life!