# File lib/luck/pane.rb, line 87
  def handle_click button, modifiers, x, y
    control = control_at x, y
    if control
      if button == :left
        control.focus! if control.respond_to? :handle_char
        control.redraw
      end
      control.handle_click button, modifiers, x, y if control.respond_to?(:handle_click)
    end
  end