[REBOL] Re: Stylize/deep
From: rotenca:telvia:it at: 26-Dec-2001 15:24
Hi Paul,
> What I typically do is just change the system object to conform to a default
> that I can work with through my layouts. For example the edge object is not
> defined within the Text-list style. Therefore, I just add the default face
> edge to the text-list such as:
>
> system/view/vid/vid-styles/text-list/edge: make object! [
> color: 200.200.200
> image: none
> effect: none
> size: 2x2
> ]
I do not like to change system defaults. I reach the same goal with:
t: layout [tl: text-list edge [color: 1.0.0]]
without changing system defaults.
---
Ciao
Romano