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

[REBOL] Re: puzzled by draw grid size

From: cybarite:sympatico:ca at: 22-Sep-2001 8:19

I guess it is because when the grid definition is being parsed by layout, it is thinks that your variable is some noise and ignores it. Maybe composing the grid effect outside of the layout would get you out of it. (Example is simplified but still shows a solution) tablesize: 4x6 ; columns x rows cellsize: 100x20 box-effect: compose [grid (cellsize)] table: [box linen cellsize * tablesize effect box-effect] view layout table