On Fri, Nov 5, 2010 at 10:55 PM, Duke Normandin <[email protected]> wrote: > > How do I change the font size in the built-in editor? It also needs > anti-aliasing. Is there a system-wide config file?
The built-in editor is created in VID, which is a very sparse UI toolkit. While easy to use at first, you might run into limitations quickly. Anti-aliasing is not possible, due to the View architecture in REBOL 2. Font-size can be clumsily changed by: 1. type: editor "" 2. quit the editor 3. ctx-edit/t1/font/size: 16 4. type editor "" You probably want to use a different editor. :-) -- Regards, Henrik Mikael Kristensen -- To unsubscribe from the list, just send an email to lists at rebol.com with unsubscribe as the subject.
