diff --git a/core/src/processing/core/ThinkDifferent.java b/core/src/processing/core/ThinkDifferent.java index 1a5c85e50..141779be5 100644 --- a/core/src/processing/core/ThinkDifferent.java +++ b/core/src/processing/core/ThinkDifferent.java @@ -124,6 +124,10 @@ public class ThinkDifferent { static native public void showMenuBar(); + // Used by Python (Jython) Mode to bring windows to the front + static native public void activateIgnoringOtherApps(); + + static { final String NATIVE_FILENAME = "libDifferent.jnilib"; try { @@ -151,11 +155,4 @@ public class ThinkDifferent { e.printStackTrace(); } } - - - // . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . - - // Used by Python (Jython) Mode to bring windows to the front - - static native public void activateIgnoringOtherApps(); }