# Shoes: release event handler not working

Shoes.app do

  @stack = stack :width => 200, :height => 200 do
    background blue
  end

  # click is reported to the console

  @stack.click { |button, top, left| info "click!" }

  # but neither of these are...

  @stack.release { |button, top, left| info "release!" }
  release { |button, left, top| "from Shoes::App... RELEASE!" }
end