[REBOL] Re: how to resize a backdrop
From: brett:codeconscious at: 20-Nov-2001 1:52
Hi Anton,
> No no. I see this very problem on windows NT4
> (and 2000, I am pretty sure...)
Yes I'm using NT4 I can see what you describe.
It true that the resize of the backdrop does not display until the wait.
Must be some special event that needs to be processed.
I missed the reason (just came in to the thread) why you found this to be a
problem though.
As the following works fine (because a event processing is occurring):
view lay: layout [
size 200x200
bd: backdrop blue effect [oval]
button "resize" [
lay/size: lay/size + 50x50
bd/size: bd/size + 50x50
show lay
]
]
What circumstance is it that you need to display a resize of the backdrop
without event processing being in operation?
Brett