Method: Gtk::Paned#pack2
- Defined in:
- lib/gtk3/paned.rb
#pack2(child, options = {}) ⇒ Object
29 30 31 32 33 34 35 |
# File 'lib/gtk3/paned.rb', line 29 def pack2(child, ={}) resize = [:resize] resize = true if resize.nil? shrink = [:shrink] shrink = true if shrink.nil? pack2_raw(child, resize, shrink) end |