diff --git a/app/src/processing/app/Preferences.java b/app/src/processing/app/Preferences.java index 119681086..ca3900845 100644 --- a/app/src/processing/app/Preferences.java +++ b/app/src/processing/app/Preferences.java @@ -266,11 +266,7 @@ public class Preferences { } } - if (!preferencesFile.exists()) { - // create a new preferences file if none exists - // saves the defaults out to the file - save(); - } else { + if (preferencesFile.exists()) { // load the previous preferences file try { load(new FileInputStream(preferencesFile));