Hi,it seems a bug to me: if you do this:
Shoes.app do
a = image 30, 30, :top => 0, :left => 0 do
rect 10,10,10,10
end
#a.move(0,0)
end
everything goes fine.
It's a whole day I'm tinkering with images in shoes and I'm amazed I never
stumbled on this behaviour ;), thanks!
e
On Sun, Jul 20, 2008 at 6:58 PM, <[EMAIL PROTECTED]> wrote:
> Hello all,
>
> Using the following code, I get two squares, side by side :
>
> Shoes.app do
> a = image :width => 30, :height => 30 do
> rect(10,10,10,10)
> end
> #a.move(0,0)
> end
>
> If I uncomment the a.move, the mysterious second square dissapears and I'm
> left
> with only one square. Do I miss something ?
>
> (I'm using Shoes r811 on MacOs 10.5.4 (intel)).
>
> --
> P.-A.
>