mirror of
https://github.com/processing/processing4.git
synced 2026-02-10 09:09:26 +01:00
more working on changes to the build/run system
This commit is contained in:
@@ -73,7 +73,7 @@ public class PdeRuntime implements PdeMessageConsumer {
|
||||
public void start(Point windowLocation, PrintStream leechErr)
|
||||
throws PdeException {
|
||||
|
||||
this.leechErr = leechErr;
|
||||
this.leechErr = new PrintStream(new PdeMessageStream(this));
|
||||
|
||||
Point parentLoc = editor.getLocation();
|
||||
Insets parentInsets = editor.getInsets();
|
||||
@@ -85,7 +85,7 @@ public class PdeRuntime implements PdeMessageConsumer {
|
||||
if (externalRuntime) {
|
||||
String command[] = new String[] {
|
||||
"java",
|
||||
"-Djava.library.path=" + libraryPath,
|
||||
"-Djava.library.path=" + libraryPath, // might be ""
|
||||
"-cp",
|
||||
classPath,
|
||||
"BApplet",
|
||||
|
||||
Reference in New Issue
Block a user