diff options
Diffstat (limited to 'src/demos/nurbs/curveapp/CurveApp.java')
-rwxr-xr-x | src/demos/nurbs/curveapp/CurveApp.java | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/src/demos/nurbs/curveapp/CurveApp.java b/src/demos/nurbs/curveapp/CurveApp.java index e125f62..ffefa42 100755 --- a/src/demos/nurbs/curveapp/CurveApp.java +++ b/src/demos/nurbs/curveapp/CurveApp.java @@ -41,10 +41,6 @@ import demos.nurbs.knotslidercomponent.JKnotSlider; @SuppressWarnings("serial") public class CurveApp extends JFrame implements ActionListener { - static { - GLProfile.initSingleton(); - } - /** * Name of X-coord editing component of actually selected control point * Jméno komponenty pro editaci X-ové souřadnice aktuálního bodu @@ -494,6 +490,13 @@ public class CurveApp extends JFrame implements ActionListener * */ 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 CurveApp(); } |