mirror of
https://github.com/processing/processing4.git
synced 2026-02-11 17:40:48 +01:00
fix typo in extensions= arg
This commit is contained in:
@@ -6650,7 +6650,7 @@ public class PApplet implements PConstants {
|
||||
} else if (opt.startsWith("extension=")) {
|
||||
extensions = new String[] { opt.substring(10) };
|
||||
} else if (opt.startsWith("extensions=")) {
|
||||
extensions = split(opt.substring(10), ',');
|
||||
extensions = split(opt.substring(11), ',');
|
||||
} else if (opt.equals("files")) {
|
||||
directories = false;
|
||||
} else if (opt.equals("directories")) {
|
||||
|
||||
Reference in New Issue
Block a user