Closedown

This commit is contained in:
boccioli_m
2015-06-02 10:58:00 +02:00
parent a661bc37ee
commit 73c93fa7f3
2 changed files with 8 additions and 4 deletions

View File

@@ -261,14 +261,17 @@ public class TestingPanel extends Panel {
try {
boolean var1 = check.isSelected();
int var2 = (Integer)spinner.getValue();
int i = 0;
HashMap args = new HashMap();
args.put("relative", var1);
args.put("steps", var2);
run("args", args);
txtTestPSRes.setText(args.get("steps").toString());
while(i < 1000){
txtTestPSRes.setText(args.get("steps").toString());
i++;
}
//evalAsync("run('args', locals = {'relative':" + (var1 ? "True" :"False") + ", 'steps':" + var2 + "})");
} catch (Exception ex) {