removing applet, upgrading OpenGL

This commit is contained in:
benfry
2012-07-20 20:57:51 +00:00
parent 74a0aa9bb1
commit a2f5c06873
6 changed files with 39 additions and 41 deletions

View File

@@ -72,7 +72,8 @@ public class JavaToolbar extends EditorToolbar {
case NEW: return !shift ? "New" : "New Editor Window";
case OPEN: return !shift ? "Open" : "Open in Another Window";
case SAVE: return "Save";
case EXPORT: return !shift ? "Export Application" : "Export Applet";
// case EXPORT: return !shift ? "Export Application" : "Export Applet";
case EXPORT: return "Export Application";
}
return null;
}
@@ -115,11 +116,11 @@ public class JavaToolbar extends EditorToolbar {
break;
case EXPORT:
if (shift) {
jeditor.handleExportApplet();
} else {
jeditor.handleExportApplication();
}
// if (shift) {
// jeditor.handleExportApplet();
// } else {
jeditor.handleExportApplication();
// }
break;
}
}