summaryrefslogtreecommitdiff
path: root/templates/cleanup.xml
blob: ad59429335ca356a83bde4edac228c7a02f66c2f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<?xml version="1.0" encoding="UTF-8"?>
<inkscape-extension translationdomain="inkstitch" xmlns="http://www.inkscape.org/namespace/inkscape/extension">
    <name>Cleanup Document</name>
    <id>org.inkstitch.cleanup</id>
    <param name="description" type="description">Use this extension to remove small objects from the document.</param>
    <param name="rm_fill" type="boolean" gui-text="Remove Small Fill Areas"
           gui-description="Removes areas smaller than dedined by threshold.">true</param>
    <param name="fill_threshold" type="int" gui-text="Fill area threshold (px²)" min="1" max="800">20</param>
    <param name="rm_stroke" type="boolean" gui-text="Remove Small strokes"
           gui-description="Removes small strokes shorter than defined by threshold.">true</param>
    <param name="stroke_threshold" type="int" gui-text="Stroke threshold (px)" min="2" max="800">5</param>
    <param name="extension" type="string" gui-hidden="true">cleanup</param>
    <effect>
        <object-type>all</object-type>
        <effects-menu>
            <submenu name="Ink/Stitch" translatable="no">
                <submenu name="Troubleshoot" />
            </submenu>
        </effects-menu>
    </effect>
    <script>
        {{ command_tag | safe }}
    </script>
</inkscape-extension>