summaryrefslogtreecommitdiffstats
path: root/src/patharray.js
diff options
context:
space:
mode:
Diffstat (limited to 'src/patharray.js')
-rw-r--r--src/patharray.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/patharray.js b/src/patharray.js
index 03a9b7f..90d0558 100644
--- a/src/patharray.js
+++ b/src/patharray.js
@@ -166,7 +166,7 @@ SVG.extend(SVG.PathArray, {
// upper case
if(s == seg[0]){
- if(s == 'M' || s == 'L' || s == 'C' || s == 'Q'){
+ if(s == 'M' || s == 'L' || s == 'C' || s == 'Q' || s == 'S' || s == 'T'){
x = seg[paramCnt[seg[0]]-1]
y = seg[paramCnt[seg[0]]]
}else if(s == 'V'){