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
The following code does not produce the expected results:
lv = RBA::LayoutView::current
lp = RBA::LayerProperties::new
lp.name = "A"
lp = lv.insert_layer(lv.begin_layers, lp)
lpp = RBA::LayerProperties::new
lpp = lp.add_child(lpp)
# This does not show up:
lpp.name = "A.1"
# Also does not show up:
lppp = RBA::LayerProperties::new
lppp = lpp.add_child(lppp)
lppp.name = "A.1.1"
# ... to here
# Also does not show up:
lppp = RBA::LayerProperties::new
lppp = lpp.add_child(lppp)
lppp.name = "A.1.2"
# ... to here
lpp = RBA::LayerProperties::new
lpp = lp.add_child(lpp)
lpp.name = "A.2"
# Also does not show up:
lppp = RBA::LayerProperties::new
lppp = lpp.add_child(lppp)
lppp.name = "A.2.1"
# ... to here
lppp = RBA::LayerProperties::new
lppp = lpp.add_child(lppp)
lppp.name = "A.2.2"
The expected result is a tree of "A -> ( A.1 -> ( A1.1, A1.2 ), A.2 -> ( A2.1, A2.2 ) ) )".
The text was updated successfully, but these errors were encountered:
The following code does not produce the expected results:
The expected result is a tree of "A -> ( A.1 -> ( A1.1, A1.2 ), A.2 -> ( A2.1, A2.2 ) ) )".
The text was updated successfully, but these errors were encountered: