module Gdk::EventAxisReader

Public Instance Methods

get_axis(type) click to toggle source
Calls superclass method
# File lib/gdk3/event-readers.rb, line 19
def get_axis(type)
  found, value = super(type)
  if found
    value
  else
    nil
  end
end