Skip to content

Commit 549d775

Browse files
authored
Merge pull request #854 from Stefterv/fix-#698
Fix #698 - Sketches weren't opening on launch because the untitled folder did not exist yet
2 parents d4884ef + b42181f commit 549d775

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

app/src/processing/app/Base.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1214,6 +1214,7 @@ public String getDescription() {
12141214
private Editor openSketchBundle(String path) {
12151215
File zipFile = new File(path);
12161216
try {
1217+
untitledFolder.mkdirs();
12171218
File destFolder = File.createTempFile("zip", "tmp", untitledFolder);
12181219
if (!destFolder.delete() || !destFolder.mkdirs()) {
12191220
// Hard to imagine why this would happen, but...

0 commit comments

Comments
 (0)