We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9729b1b commit 04cfe0cCopy full SHA for 04cfe0c
arduino-core/src/processing/app/windows/Platform.java
@@ -59,12 +59,12 @@ public void init() throws IOException {
59
}
60
61
private void recoverSettingsFolderPath() {
62
- String path = readRegistryEntry(new String[]{"User Shell Folders", "Shell Folders"}, "Local AppData");
+ String path = readRegistryEntry(new String[]{"Shell Folders", "User Shell Folders"}, "Local AppData");
63
this.settingsFolder = new File(path, "Arduino15");
64
65
66
private void recoverDefaultSketchbookFolder() {
67
- String path = readRegistryEntry(new String[]{"User Shell Folders", "Shell Folders"}, "Personal");
+ String path = readRegistryEntry(new String[]{"Shell Folders", "User Shell Folders"}, "Personal");
68
this.defaultSketchbookFolder = new File(path, "Arduino");
69
70
0 commit comments