summaryrefslogtreecommitdiffstats
path: root/src/demos/j2d/TextFlow.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/demos/j2d/TextFlow.java')
-rwxr-xr-xsrc/demos/j2d/TextFlow.java10
1 files changed, 6 insertions, 4 deletions
diff --git a/src/demos/j2d/TextFlow.java b/src/demos/j2d/TextFlow.java
index 32c7600..f0f29f8 100755
--- a/src/demos/j2d/TextFlow.java
+++ b/src/demos/j2d/TextFlow.java
@@ -74,11 +74,13 @@ import com.jogamp.opengl.util.Animator;
screen. */
public class TextFlow extends Demo {
- static {
- GLProfile.initSingleton();
- }
-
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);
Frame frame = new Frame("Text Flow");
frame.setLayout(new BorderLayout());