Windows: inverted folder entries, as Shell Folders is more reliable (when

present)
This commit is contained in:
Federico Fissore 2015-11-18 16:00:11 +01:00
parent 9729b1b069
commit 04cfe0c36d
1 changed files with 2 additions and 2 deletions

View File

@ -59,12 +59,12 @@ public class Platform extends processing.app.Platform {
}
private void recoverSettingsFolderPath() {
String path = readRegistryEntry(new String[]{"User Shell Folders", "Shell Folders"}, "Local AppData");
String path = readRegistryEntry(new String[]{"Shell Folders", "User Shell Folders"}, "Local AppData");
this.settingsFolder = new File(path, "Arduino15");
}
private void recoverDefaultSketchbookFolder() {
String path = readRegistryEntry(new String[]{"User Shell Folders", "Shell Folders"}, "Personal");
String path = readRegistryEntry(new String[]{"Shell Folders", "User Shell Folders"}, "Personal");
this.defaultSketchbookFolder = new File(path, "Arduino");
}