diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-13 11:50:49 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-13 11:50:49 +0000 |
commit | c853ffb5b2f75f5a889ed2e3ef89b818a736e87a (patch) | |
tree | 7d13a0883bb7936b84d6ecdd7bc332b41ed04bee /share/extensions/ungroup_deep.inx | |
parent | Initial commit. (diff) | |
download | inkscape-c853ffb5b2f75f5a889ed2e3ef89b818a736e87a.tar.xz inkscape-c853ffb5b2f75f5a889ed2e3ef89b818a736e87a.zip |
Adding upstream version 1.3+ds.upstream/1.3+dsupstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'share/extensions/ungroup_deep.inx')
-rw-r--r-- | share/extensions/ungroup_deep.inx | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/share/extensions/ungroup_deep.inx b/share/extensions/ungroup_deep.inx new file mode 100644 index 0000000..cc93d04 --- /dev/null +++ b/share/extensions/ungroup_deep.inx @@ -0,0 +1,18 @@ +<?xml version="1.0" encoding="UTF-8"?> +<inkscape-extension xmlns="http://www.inkscape.org/namespace/inkscape/extension"> + <name>Deep Ungroup</name> + <id>mcepl.ungroup_deep</id> + <label>Ungroup all groups in the selected object.</label> + <param name="startdepth" type="int" min="0" max="65535" gui-text="Starting Depth">0</param> + <param name="maxdepth" type="int" min="0" max="65535" gui-text="Stopping Depth (from top)">65535</param> + <param name="keepdepth" type="int" min="0" max="65535" gui-text="Depth to Keep (from bottom)">0</param> + <effect needs-live-preview="false"> + <object-type>all</object-type> + <effects-menu > + <submenu name="Arrange" /> + </effects-menu> + </effect> + <script> + <command location="inx" interpreter="python">ungroup_deep.py</command> + </script> +</inkscape-extension> |