Edit widget text cap...

ZealAddon

10-03-2010 17:02:45

So I am using a Edit widget to output the results for a simple debug console. After a while the console stops working because the Edit box gets full. Is there any easy way to tell the Edit box to auto 'wrap onto itself' and overwrite earlier text entries to make room for new ones?

Thanks

Altren

10-03-2010 18:13:08

Set OverflowToTheLeft property to True in layout. Or you can do that in code: setOverflowToTheLeft(true);
Also you might want to increase MaxTextLength (aka setMaxTextLength). 2048 by default.