diff options
Diffstat (limited to 'src/demos/particles/engine/ControlWindow.java')
-rwxr-xr-x | src/demos/particles/engine/ControlWindow.java | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src/demos/particles/engine/ControlWindow.java b/src/demos/particles/engine/ControlWindow.java index 8268e6f..ab94ff1 100755 --- a/src/demos/particles/engine/ControlWindow.java +++ b/src/demos/particles/engine/ControlWindow.java @@ -42,6 +42,8 @@ import javax.swing.border.*; import java.awt.event.*; import javax.swing.event.*; +import javax.media.opengl.GLProfile; + public class ControlWindow extends JFrame implements ActionListener, ChangeListener { // For the engine @@ -194,6 +196,13 @@ public class ControlWindow extends JFrame implements ActionListener, ChangeListe } public static void main(String[] args) { + // set argument 'NotFirstUIActionOnProcess' in the JNLP's application-desc tag for example + // <application-desc main-class="demos.j2d.TextCube"/> + // <argument>NotFirstUIActionOnProcess</argument> + // </application-desc> + boolean firstUIActionOnProcess = 0==args.length || !args[0].equals("NotFirstUIActionOnProcess") ; + GLProfile.initSingleton(firstUIActionOnProcess); + new ControlWindow(); } |