every configuration setting is configurable on the ui, reset configuration button, show config descriptions

This commit is contained in:
Honfika
2013-11-08 13:17:44 +01:00
parent 6f481b2561
commit 2f49b47e87
33 changed files with 373 additions and 134 deletions

View File

@@ -148,7 +148,7 @@ public class CommandLineArgumentParser {
traceLevel = Level.FINE;
break;
case "-debug":
Configuration.debugMode = true;
Configuration.debugMode.set(true);
break;
default:
break OUTER;
@@ -574,7 +574,7 @@ public class CommandLineArgumentParser {
badArguments();
}
try {
Configuration.dump_tags = true;
Configuration.dumpTags.set(true);
Configuration.parallelSpeedUp.set(false);
SWF swf = Main.parseSWF(args.remove());
} catch (Exception ex) {