Just wondering if this is a bug - in the following code, the Groupbox (g) has a rect, but its properties (top, left, bottom, right, width, height) are not defined?
w=SKUI::Window.new
g=SKUI::Groupbox.new "Group 1"
w.add_control(g)
w.show
# g has a rect...
g.rect.to_hash # => {:left=>0, :top=>0, :right=>55, :bottom=>24, :width=>55, :height=>24}
# but no properties?
g.top # =>nil
g.width # => nil
Just wondering if this is a bug - in the following code, the Groupbox (g) has a rect, but its properties (top, left, bottom, right, width, height) are not defined?