Method: Fidgit::VerticalScrollBar#clicked_to_move

Defined in:
lib/fidgit/elements/scroll_bar.rb

#clicked_to_move(x, y) ⇒ Object



123
124
125
126
# File 'lib/fidgit/elements/scroll_bar.rb', line 123

def clicked_to_move(x, y)
  new_y = y < @handle.y ? @handle.y - @handle.height : @handle.y + @handle.height
  handle_dragged_to @handle.x, new_y
end