fixes to re-enable sketchbook prompt, also shift-new to do oppo behavior

This commit is contained in:
benfry
2004-06-22 02:27:00 +00:00
parent 9113fe2e1c
commit b2dbffd3a8
5 changed files with 24 additions and 26 deletions

View File

@@ -340,7 +340,7 @@ public class PdeEditorButtons extends JComponent implements MouseInputListener {
case RUN: editor.handleRun(e.isShiftDown()); break;
case STOP: setState(RUN, INACTIVE, true); editor.handleStop(); break;
case OPEN: setState(OPEN, INACTIVE, true); break;
case NEW: editor.handleNew(); break;
case NEW: editor.handleNew(e.isShiftDown()); break;
case SAVE: editor.handleSave(); break;
case EXPORT: editor.handleExport(); break;
}