class Gtk::IconSize
Public Instance Methods
lookup(size)
click to toggle source
# File gtk3/lib/gtk3/icon-size.rb, line 21 def lookup(size) size = new(size) unless size.is_a?(self) valid, width, height = lookup_raw(size) if valid [width, height] else nil end end