Sorry for writing again but I have tested this application:
Shoes.app do
@t1=stack :width=>250, :height=>250 do
background green
@i1=flow :width=>200, :height=>200 do
background red
para "\n\nOj Oj"
@r1=button "kkk"
@r1.move(40,100)
end
button "toggle inside" do
@i1.toggle
end
end
button "toggle" do
@t1.toggle
end
endWhat I see is that "toggle" toggles green stack and "toggle inside" - only the smaller/red one. Is it expected? thanks K
