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

[REBOL] Re: Field bug ? (was Re: Pairs in fields...)

From: carl:cybercraft at: 15-Oct-2002 20:40

Ahah! Thanks Gabriele! Any idea why this fixes it? I notice just one para [] in any field is enough to cure the problem. ie this fixes it... test-lo: layout [ field "aaa" 60 field "bbb" 60 para [] ] view/offset layout [ button "Test" [view/new test-lo] ] 20x200 Nice to know there's such a simple workaround, anyway. Carl. On 15-Oct-02, Gabriele Santilli wrote:
> Hi Carl, > On Tuesday, October 15, 2002, 12:09:35 AM, you wrote: >> test-lo: layout [ >> field "aaa" 60 >> field "bbb" 60 >> ] > You can fix it with: > test-lo: layout [ > field "aaa" 60 para [] > field "bbb" 60 para [] > ] > To have it fixed globally you could do something like: > stylize/master [ > Field: Field with [ > append init [ > para: make para [] > ] > ] > ] > Regards, > Gabriele.
-- Carl Read