tweaks to editor based on feedback

This commit is contained in:
benfry
2004-10-10 01:01:34 +00:00
parent 3b8789e316
commit efbf7e299f
9 changed files with 100 additions and 54 deletions

View File

@@ -1003,7 +1003,12 @@ public class PdeSketch {
//importPackageList = PdeCompiler.packageListFromClassPath(classPath);
libraryPath = codeFolder.getAbsolutePath();
} else {
externalRuntime = (codeCount > 1); // may still be set true later
// check to see if multiple files that include a .java file
externalRuntime = false;
for (int i = 0; i < codeCount; i++) {
if (code[i].flavor == JAVA) externalRuntime = true;
}
//externalRuntime = (codeCount > 1); // may still be set true later
//importPackageList = null;
libraryPath = "";
}