bugfixing

This commit is contained in:
Blue 2018-11-20 17:01:34 +03:00
parent 8b28361f2c
commit 8511d8d2ec
1 changed files with 3 additions and 3 deletions

View File

@ -37,9 +37,9 @@ let form = new Form(panelWidth, panelHeight - panelPaddingTop);
let randomBox = new SwitchBox(true, 40, 20);
let amountBox = new NumericBox(100, 30);
amountBox.setValue(100);
let circlesBox = new SwitchBox(this, 40, 20);
let rectanglesBox = new SwitchBox(this, 40, 20);
let trianglesBox = new SwitchBox(this, 40, 20);
let circlesBox = new SwitchBox(true, 40, 20);
let rectanglesBox = new SwitchBox(true, 40, 20);
let trianglesBox = new SwitchBox(true, 40, 20);
form.addLine("random", "Random amount of shapes",randomBox);
form.addLine("amount", "Amount of shapes", amountBox);