diff options
| author | capellancitizen <thecapellancitizen@gmail.com> | 2024-08-14 19:40:42 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-08-14 19:40:42 -0400 |
| commit | f3a3cde71e9312d1f07c156033de5b7fb4b99f2d (patch) | |
| tree | ff47b266848c0233bca8eca067944a672c9095b8 /lib/svg/path.py | |
| parent | 744da960b3c96260243fc54a4f837422f6a4c0ac (diff) | |
Clones now also clone commands attached to element and its children. (#3032, #3121) (#3086)
Diffstat (limited to 'lib/svg/path.py')
| -rw-r--r-- | lib/svg/path.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/svg/path.py b/lib/svg/path.py index 878d2a7c..9d92058b 100644 --- a/lib/svg/path.py +++ b/lib/svg/path.py @@ -31,7 +31,7 @@ def compose_parent_transforms(node, mat): return mat -def get_node_transform(node): +def get_node_transform(node: inkex.BaseElement): """ if getattr(node, "composed_transform", None): return node.composed_transform() |
