We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f65e736 commit 350ed87Copy full SHA for 350ed87
app/src/processing/app/linux/Platform.java
@@ -105,9 +105,9 @@ public boolean openFolderAvailable() {
105
106
public void openFolder(File file) throws Exception {
107
if (openFolderAvailable()) {
108
- String lunch = Preferences.get("launcher");
+ String launcher = Preferences.get("launcher");
109
try {
110
- String[] params = new String[] { lunch, file.getAbsolutePath() };
+ String[] params = new String[] { launcher, file.getAbsolutePath() };
111
//processing.core.PApplet.println(params);
112
/*Process p =*/ Runtime.getRuntime().exec(params);
113
/*int result =*/ //p.waitFor();
0 commit comments