Fixed buttons changing color

This commit is contained in:
2015-05-21 22:10:11 +02:00
parent 36cbc2b012
commit 678201d118
4 changed files with 20 additions and 23 deletions
+8 -1
View File
@@ -3,7 +3,14 @@ package main;
public class Main {
public static void main(String[] args) {
new Window();
if(args.length != 1)
{
new Window(false);
}
else
{
new Window(Boolean.getBoolean(args[0].toLowerCase()));
}
}
}