kopia lustrzana https://github.com/inkstitch/inkstitch
40 wiersze
1.5 KiB
XML
40 wiersze
1.5 KiB
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<inkscape-extension translationdomain="inkstitch" xmlns="http://www.inkscape.org/namespace/inkscape/extension">
|
|
<name>Break Apart Fill Objects</name>
|
|
<id>org.{{ id_inkstitch }}.break_apart</id>
|
|
<param name="extension" type="string" gui-hidden="true">break_apart</param>
|
|
|
|
<param name="notebook" type="notebook">
|
|
<page name="options" gui-text="Options">
|
|
<param name="method" type="optiongroup" gui-text="Method">
|
|
<option value="0">Simple</option>
|
|
<option value="1">Complex</option>
|
|
</param>
|
|
</page>
|
|
<page name="info" gui-text="Help">
|
|
<label>
|
|
This extension will try to repair fill shapes and break them apart if necessary.
|
|
Holes will be retained. Use on simple or overlapping shapes.
|
|
</label>
|
|
<spacer />
|
|
<label>More information on our website</label>
|
|
<label appearance="url">https://inkstitch.org/docs/fill-tools/#break-apart-fill-objects</label>
|
|
</page>
|
|
</param>
|
|
|
|
<effect>
|
|
<object-type>all</object-type>
|
|
<icon>{{ icon_path }}inx/break_apart_fill.svg</icon>
|
|
<menu-tip>Break apart and repair (broken) fill shapes</menu-tip>
|
|
<effects-menu>
|
|
<submenu name="{{ menu_inkstitch }}" translatable="no">
|
|
<submenu name="Tools: Fill" />
|
|
</submenu>
|
|
</effects-menu>
|
|
</effect>
|
|
|
|
<script>
|
|
{{ command_tag | safe }}
|
|
</script>
|
|
</inkscape-extension>
|