Recent sketches list updated even when a new sketch is saved. Fixes #3285

This commit is contained in:
Federico Fissore 2015-06-04 10:41:13 +02:00
parent bede6967d5
commit e33bd78a1d
1 changed files with 2 additions and 0 deletions

View File

@ -2455,6 +2455,8 @@ public class Editor extends JFrame implements RunnerListener {
statusNotice(_("Saving...")); statusNotice(_("Saving..."));
try { try {
if (sketch.saveAs()) { if (sketch.saveAs()) {
base.storeRecentSketches(sketch);
base.rebuildRecentSketchesMenuItems();
statusNotice(_("Done Saving.")); statusNotice(_("Done Saving."));
// Disabling this for 0125, instead rebuild the menu inside // Disabling this for 0125, instead rebuild the menu inside
// the Save As method of the Sketch object, since that's the // the Save As method of the Sketch object, since that's the