put jnilib files into Contents/Resources/Java.. also open folder after export

This commit is contained in:
benfry
2005-11-29 00:06:47 +00:00
parent d814be907c
commit 91a68f91ae
4 changed files with 32 additions and 40 deletions

View File

@@ -1638,7 +1638,10 @@ public class Editor extends JFrame
synchronized public void handleExportApp() {
message("Exporting application...");
try {
if (sketch.exportApplication()) {
boolean success = sketch.exportApplication();
if (success) {
File destFolder = new File(sketch.folder, "application");
Base.openFolder(destFolder);
message("Done exporting.");
} else {
// error message will already be visible