Fixed buttons changing color
This commit is contained in:
+8
-1
@@ -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()));
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user