This repository was archived by the owner on Oct 4, 2019. It is now read-only.
File tree Expand file tree Collapse file tree 2 files changed +5
-4
lines changed
src/processing/mode/experimental Expand file tree Collapse file tree 2 files changed +5
-4
lines changed Original file line number Diff line number Diff 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 }
Original file line number Diff line number Diff 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" ,
You can’t perform that action at this time.
0 commit comments