On Tue, Feb 17, 2009 at 07:30:50PM -0700, Adam McCann wrote:
> Hi,
>
> I've been playing around with shoes, and the following program seems to not
> work properly:
>
> Shoes.app do
> stack :width => 200, :height => "100%" do
Yes, that's right, stacks with fixed heights are bad in Shoes 2.
Especially stacks with 100% fixed heights. This is being remedied in
Shoes 3, as it's an important part of Hackety Hack which I am tied
up with at the moment.
Fortunately there are many ways to do almost everything and a 200px
width border can much more easily be achieved with:
Shoes.app do
border "#DAD".."#AAD", :width => 200
end
_why