bring back "done" message (fixes #3861)

This commit is contained in:
Ben Fry
2015-09-24 06:01:57 -04:00
parent 48d013becf
commit 920edb034a
3 changed files with 3 additions and 3 deletions

View File

@@ -1129,6 +1129,7 @@ public class Sketch {
@Override
public void done() {
frame.dispose();
editor.statusNotice(Language.text("editor.status.saving.done"));
}
}.execute();
}

View File

@@ -2525,7 +2525,7 @@ public abstract class Editor extends JFrame implements RunnerListener {
statusNotice(Language.text("editor.status.saving"));
try {
if (sketch.saveAs()) {
// statusNotice("Done Saving.");
//statusNotice(Language.text("editor.status.saving.done"));
// status is now printed from Sketch so that "Done Saving."
// is only printed after Save As when progress bar is shown.
} else {

View File

@@ -3,8 +3,7 @@ X distinguish errors and warnings
X https://github.com/processing/processing/issues/3406
X make breakpoints more prominent
X https://github.com/processing/processing/issues/3307 (comp is set)
_ does the "Saving" message never clear on "Save As"?
_ probably a regression from the "save as" code
X does the "Saving" message never clear on "Save As"?
known issues