Mailing List Archive: 49091 messages
  • Home
  • Script library
  • AltME Archive
  • Mailing list
  • Articles Index
  • Site search
 

[REBOL] Re: Layout in more than one pane

From: rotenca:telvia:it at: 2-Nov-2001 22:43

Hi, Cyphre
> maybe this is a little bit out of topic but I'm posting it to remind you > this two bugs (which I had already posted to feedback) because I believe you > are intensively working on the next release ;-) > > first bug: > > a: make face [size: 50x50 color: red] > b: make face [color: blue pane: [a]] > view layout [bx: box with [pane: [b]] button "hide box" [hide bx]]
I think this is not a bug of Vid, but of this piece of code which put a word in the block of pane, not a face, the correct version should be: a: make face [size: 50x50 color: red] b: make face [color: blue pane: reduce [a]] view layout [bx: box with [pane: reduce [b]] button "hide box" [hide bx]]
> second bug: > > a: make face [size: 50x50 color: red] > view layout [box with [color: blue pane: [a]] button "hide box" [hide > a/parent-face]]
The same i think for the last. --- Ciao Romano