Firefox workaround no longer needed to get applet going.

This commit is contained in:
kappa1 2008-04-24 20:43:42 +00:00
parent 2de3d18566
commit a7dd394fe5

View file

@ -701,18 +701,13 @@ public class AppletLoader extends Applet implements Runnable, AppletStub {
setLayout(new BorderLayout());
add(lwjglApplet);
validate();
state = STATE_INITIALIZE_REAL_APPLET;
lwjglApplet.init();
state = STATE_START_REAL_APPLET;
lwjglApplet.start();
// fix for issue with applet not showing up in firefox
setVisible(false);
validate();
setVisible(true);
}
/**