From 920edb034a4dbf0fa563a22833d4f5bb81f1af2e Mon Sep 17 00:00:00 2001 From: Ben Fry Date: Thu, 24 Sep 2015 06:01:57 -0400 Subject: [PATCH] bring back "done" message (fixes #3861) --- app/src/processing/app/Sketch.java | 1 + app/src/processing/app/ui/Editor.java | 2 +- todo.txt | 3 +-- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/app/src/processing/app/Sketch.java b/app/src/processing/app/Sketch.java index 533920983..570a6c66c 100644 --- a/app/src/processing/app/Sketch.java +++ b/app/src/processing/app/Sketch.java @@ -1129,6 +1129,7 @@ public class Sketch { @Override public void done() { frame.dispose(); + editor.statusNotice(Language.text("editor.status.saving.done")); } }.execute(); } diff --git a/app/src/processing/app/ui/Editor.java b/app/src/processing/app/ui/Editor.java index 89dc17cf2..7047f620c 100644 --- a/app/src/processing/app/ui/Editor.java +++ b/app/src/processing/app/ui/Editor.java @@ -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 { diff --git a/todo.txt b/todo.txt index c5d06c449..b22f18031 100644 --- a/todo.txt +++ b/todo.txt @@ -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