mirror of
https://github.com/processing/processing4.git
synced 2026-02-03 05:39:18 +01:00
fix another options bug in loadTable
This commit is contained in:
@@ -5793,7 +5793,11 @@ public class PApplet extends Applet
|
||||
String ext = checkExtension(filename);
|
||||
if (ext != null) {
|
||||
if (ext.equals("csv") || ext.equals("tsv")) {
|
||||
options = ext + ",";
|
||||
if (options == null) {
|
||||
options = ext;
|
||||
} else {
|
||||
options = ext + "," + options;
|
||||
}
|
||||
}
|
||||
}
|
||||
return new Table(createInput(filename), options);
|
||||
|
||||
Reference in New Issue
Block a user