Skip to content

Commit 86f0d20

Browse files
committed
ignore <title> tag in svg files
1 parent c5d8cac commit 86f0d20

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

core/src/processing/core/PShapeSVG.java

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -412,6 +412,9 @@ protected PShape parseChild(XML elem) {
412412
} else if (name.equals("sodipodi:namedview")) {
413413
// these are always in Inkscape files, the warnings get tedious
414414

415+
} else if (name.equals("title")) {
416+
// harmless
417+
415418
} else if (!name.startsWith("#")) {
416419
PGraphics.showWarning("Ignoring <" + name + "> tag.");
417420
// new Exception().printStackTrace();

0 commit comments

Comments
 (0)