You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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
The text was updated successfully, but these errors were encountered:
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?
The text was updated successfully, but these errors were encountered: