Skip to content

Commit a11583f

Browse files
committed
Merge pull request #63 from GKFX/patch-1
Update AndroidEditor.java
2 parents aa4f1da + a99fcac commit a11583f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/processing/mode/android/AndroidEditor.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -287,7 +287,7 @@ public void actionPerformed(ActionEvent e) {
287287
public void showReference(String filename) {
288288
File javaReferenceFolder = Base.getContentFile("modes/java/reference");
289289
File file = new File(javaReferenceFolder, filename);
290-
Base.openURL("file://" + file.getAbsolutePath());
290+
Base.openURL(file.toURI().toString());
291291
}
292292

293293

@@ -503,4 +503,4 @@ public void run() {
503503
}
504504
}.start();
505505
}
506-
}
506+
}

0 commit comments

Comments
 (0)