forked from External/mage
Done - Issue 35: Hide Quick Start button
This commit is contained in:
parent
92dc74634b
commit
e2955de950
2 changed files with 8 additions and 1 deletions
|
|
@ -96,6 +96,7 @@ public class MageFrame extends javax.swing.JFrame {
|
|||
private static Preferences prefs = Preferences.userNodeForPackage(MageFrame.class);
|
||||
private JLabel title;
|
||||
private Rectangle titleRectangle;
|
||||
public final static String testModeArg = "-testMode=";
|
||||
|
||||
/**
|
||||
* @return the session
|
||||
|
|
@ -553,6 +554,12 @@ public class MageFrame extends javax.swing.JFrame {
|
|||
splash.update();
|
||||
}
|
||||
|
||||
for (String arg: args) {
|
||||
if (arg.startsWith(testModeArg)) {
|
||||
System.setProperty(testModeArg, "true");
|
||||
}
|
||||
}
|
||||
|
||||
Thread.setDefaultUncaughtExceptionHandler(new Thread.UncaughtExceptionHandler() {
|
||||
public void uncaughtException(Thread t, Throwable e) {
|
||||
logger.log(Level.SEVERE, null, e);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue