mirror of
https://github.com/processing/processing4.git
synced 2026-02-02 21:29:17 +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")) {
|
||||
|
||||
@@ -1,4 +1,6 @@
|
||||
1273 (4.0a4)
|
||||
X fix typo in extensions= arg
|
||||
|
||||
|
||||
_ why does japplemenubar.JAppleMenuBar.hide(); still work?
|
||||
_ it calls SetSystemUIMode, which is part of Carbon (which was removed in Catalina)
|
||||
|
||||
Reference in New Issue
Block a user