Re: [racket-users] Resize panels inside panels

2017-02-23 Thread Erich Rast
Your example works and made me realize that I've accidentally removed a list-box *inside* the panel rather than the panel itself in my application. No wonder it didn't work! Thank you so much! Best, Erich On Thu, 23 Feb 2017 05:17:23 -0700 Matthew Flatt wrote: > If so, is there a change that

Re: [racket-users] Resize panels inside panels

2017-02-23 Thread Matthew Flatt
At Thu, 23 Feb 2017 10:09:59 +, Erich Rast wrote: > I have an editor-canvas A subclasses inside a vertical-panel subclass B > and below A there is another vertical-panel subclass C in B. C is shown > or hidden by removing and adding it via change-children in B. > > However, even though A has

[racket-users] Resize panels inside panels

2017-02-23 Thread Erich Rast
I have an editor-canvas A subclasses inside a vertical-panel subclass B and below A there is another vertical-panel subclass C in B. C is shown or hidden by removing and adding it via change-children in B. However, even though A has stretchable-height set to #t, it does not resize to fill the who