diff options
| author | capellancitizen <thecapellancitizen@gmail.com> | 2024-04-12 16:01:17 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-04-12 16:01:17 -0400 |
| commit | 7e756b8971cc3b85a0beec3e674c4c1d9284e4b2 (patch) | |
| tree | 5cbb1effd63000805afa912c9fea6173fc12e330 /lib/extensions/__init__.py | |
| parent | dd85f23bdb78d53d4b704d18b4a6eceaea8335bd (diff) | |
Additional Clone functionality (#2834)
- Recursive Clones now pick up inkstitch:angle etc. from clones they clone
- Style now properly propogates to clones
- Unlink Clone tool (which applies angle changes, etc.)
- Minor refactoring
Diffstat (limited to 'lib/extensions/__init__.py')
| -rw-r--r-- | lib/extensions/__init__.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/extensions/__init__.py b/lib/extensions/__init__.py index 0ae88c76..c0ddf0ce 100644 --- a/lib/extensions/__init__.py +++ b/lib/extensions/__init__.py @@ -57,6 +57,7 @@ from .stroke_to_lpe_satin import StrokeToLpeSatin from .tartan import Tartan from .test_swatches import TestSwatches from .troubleshoot import Troubleshoot +from .unlink_clone import UnlinkClone from .update_svg import UpdateSvg from .zigzag_line_to_satin import ZigzagLineToSatin from .zip import Zip @@ -115,6 +116,7 @@ __all__ = extensions = [ApplyPalette, Tartan, TestSwatches, Troubleshoot, + UnlinkClone, UpdateSvg, ZigzagLineToSatin, Zip] |
