Re: [racket] Cannot minimize a window frame%

2012-06-23 Thread Matthew Flatt
Thanks for narrowing down the problem! I've pushed a repair to the git repo. At Tue, 19 Jun 2012 16:34:39 -0600, Kieron Hardy wrote: > Matthew, > > It seems the problem is with some (perhaps incompatible) parameters to a > frame%. Specifically if the style or stretchable-width parameters are > re

Re: [racket] Cannot minimize a window frame%

2012-06-19 Thread Kieron Hardy
Matthew, It seems the problem is with some (perhaps incompatible) parameters to a frame%. Specifically if the style or stretchable-width parameters are removed from the following code the windows behaves as expected. Kieron. #lang racket/gui (define f (new frame% (parent #f)

Re: [racket] Cannot minimize a window frame%

2012-06-19 Thread Matthew Flatt
Can you provide an example? The `iconize' method of `frame%' seems to work for me on Windows, and I'm not sure what else to try. At Mon, 18 Jun 2012 17:39:24 -0600, Kieron Hardy wrote: > Hi all, > > I have a GUI with a couple of frame% windows, and I cannot minimize them. > > Overriding on-activ

[racket] Cannot minimize a window frame%

2012-06-18 Thread Kieron Hardy
Hi all, I have a GUI with a couple of frame% windows, and I cannot minimize them. Overriding on-activate and printing a message, shows that frame% attempts to minimize at first (i.e. on-activate is called with activate? value #f) - but then immediately gets re-activated (i.e. on-activate is recal