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

[REBOL] Re: Area bug?

From: rotenca:telvia:it at: 5-Sep-2002 12:23

Hi,
> are scrolled. The obvious questions are why? How do I prevent this? Is this > a bug? Has anyone raised this with feedback yet? > > Any and all workarounds greatly appreciated (preferably of a global nature, > having to "do [xxx]" each field / area is not really practical).
it is not a bug, is a (strange) feature. The para object, which keeps scroll info, is shared by faces. A simple: x: field para [] clones the para object. A more global solution: my-styles: stilize [area: area para [] field: field para []] view layout [ styles my-styles field "" area "" ] --- Ciao Romano