blob: cc93d0441f9bd581278f17651fa0e289c1fbeccb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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>
|