Here's the script I wrote to tickle the bug:
- Code: Select all
var myLayout;
var f = new crashingForm;
f.show();
Application.run;
class crashingForm extends Form {
function crashingForm() {
super("This crashes Strata", 100, 100, 300, 400);
myLayout = new BorderBoxLayout(Layout.Vertical);
myLayout.add(undefined, 1, Layout.Expand);
setLayout(myLayout);
}
}
Hope this helps!