get export working again, fix applet html, allow custom applet.html in

sketch
This commit is contained in:
benfry
2004-06-22 00:50:16 +00:00
parent a2b7dab05e
commit 404944b252
4 changed files with 29 additions and 13 deletions

View File

@@ -1233,8 +1233,11 @@ public class PdeEditor extends JFrame
public void handleSave() {
message("Saving...");
try {
sketch.save();
message("Done Saving.");
if (sketch.save()) {
message("Done Saving.");
} else {
message(EMPTY);
}
// rebuild sketch menu in case a save-as was forced
sketchbook.rebuildMenu();