Skip to content
This repository was archived by the owner on Oct 4, 2019. It is now read-only.

Commit 0808e22

Browse files
committed
last few minor touches
1 parent 6f52073 commit 0808e22

File tree

2 files changed

+5
-4
lines changed

2 files changed

+5
-4
lines changed

src/processing/mode/experimental/DebugEditor.java

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -891,13 +891,14 @@ public void loadAutoSaver(){
891891
int response = Base
892892
.showYesNoQuestion(this,
893893
"Unsaved backup found!",
894-
"An automatic backup of "
894+
"An automatic backup of \""
895895
+ pastSave.getParentFile().getName()
896-
+ "sketch has been found. This may mean Processing quit unexpectedly last time.",
896+
+ "\" sketch has been found. This may mean Processing " +
897+
"was closed unexpectedly last time.",
897898
"Select YES to view it or NO to delete the backup.");
898899
if(response == JOptionPane.YES_OPTION){
899900
handleOpenInternal(pastSave.getAbsolutePath());
900-
Base.showMessage("Save it", "Remember to save the backup to a specific location if you want to.");
901+
Base.showMessage("Save it..", "Remember to save the backup sketch to a specific location if you want to.");
901902
//log(getSketch().getMainFilePath());
902903
return;
903904
}

src/processing/mode/experimental/ExperimentalMode.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,7 @@ public File[] getKeywordFiles() {
119119

120120
volatile public static boolean errorCheckEnabled = true, warningsEnabled = true,
121121
codeCompletionsEnabled = true, debugOutputEnabled = false, errorLogsEnabled = false;
122-
public static int autoSaveInterval = 5; //in minutes
122+
public static int autoSaveInterval = 3; //in minutes
123123

124124
public static final String prefErrorCheck = "pdex.errorCheckEnabled",
125125
prefWarnings = "pdex.warningsEnabled",

0 commit comments

Comments
 (0)