Method: UI::SwitchContainer#layout

Defined in:
lib/ektoplayer/ui/widgets/container.rb

#layoutObject



130
131
132
133
134
135
136
137
138
139
# File 'lib/ektoplayer/ui/widgets/container.rb', line 130

def layout
   @widgets.each do |widget|
      widget.with_lock do
         widget.size=(@size)
         widget.pos=(@pos)
      end
   end

   super
end