Method: Gtk::Paned#pack1
- Defined in:
- lib/gtk3/paned.rb
#pack1(child, options = {}) ⇒ Object
20 21 22 23 24 25 26 |
# File 'lib/gtk3/paned.rb', line 20 def pack1(child, ={}) resize = [:resize] resize = false if resize.nil? shrink = [:shrink] shrink = true if shrink.nil? pack1_raw(child, resize, shrink) end |