diff options
Diffstat (limited to 'src/sp-path.cpp')
| -rw-r--r-- | src/sp-path.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/sp-path.cpp b/src/sp-path.cpp index 47d63b2b9..0867cc3ad 100644 --- a/src/sp-path.cpp +++ b/src/sp-path.cpp @@ -361,10 +361,10 @@ sp_path_set_transform(SPItem *item, NR::Matrix const &xform) // Transform the original-d path or the (ordinary) path if (path->original_curve) { - path->original_curve->transform(xform); + path->original_curve->transform(to_2geom(xform)); sp_lpe_item_update_patheffect(path, true, true); } else { - shape->curve->transform(xform); + shape->curve->transform(to_2geom(xform)); } // Adjust stroke |
