diff options
| author | Kaalleen <36401965+kaalleen@users.noreply.github.com> | 2022-04-24 08:27:42 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-04-24 08:27:42 +0200 |
| commit | f9d57f6ea51ea8da186c41b70950b7d87fa2c20b (patch) | |
| tree | 7c2664fc201933b64cc224adb28ff717e6f08c61 /templates/apply_threadlist.xml | |
| parent | 4058712139b56a2419e01db700581b3c9554a88a (diff) | |
Fix lettering scale, etc. (#1620)
* fix lettering scale
* adapt to updated inkex: transform operator, selections
* fix #1597
* no traceback error message on broken satin columns
* highlight troubleshoot "steps to solve" through additional headline
* set a minimum value for running stitch repeats
* rename "import" thread list to "apply" thread list
Diffstat (limited to 'templates/apply_threadlist.xml')
| -rw-r--r-- | templates/apply_threadlist.xml | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/templates/apply_threadlist.xml b/templates/apply_threadlist.xml new file mode 100644 index 00000000..58776cb5 --- /dev/null +++ b/templates/apply_threadlist.xml @@ -0,0 +1,27 @@ +<?xml version="1.0" encoding="UTF-8"?> +<inkscape-extension translationdomain="inkstitch" xmlns="http://www.inkscape.org/namespace/inkscape/extension"> + <name>Apply Threadlist</name> + <id>org.inkstitch.apply_threadlist</id> + <param name="extension" type="string" gui-hidden="true">apply_threadlist</param> + <param name="filepath" type="path" gui-text="Choose file" mode="file" filetypes="txt"/> + <param name="method" type="optiongroup" gui-text="Choose method"> + <option value="1">Apply Ink/Stitch threadlist</option> + <option value="2">Apply other threadlist*</option> + </param> + <param name="palette" type="enum" gui-text="*Choose color palette"> + {%- for item in threadcatalog %} + <item value="{{ item }}">{{ item }}</item> + {%- endfor %} + </param> + <effect> + <object-type>all</object-type> + <effects-menu> + <submenu name="Ink/Stitch" translatable="no"> + <submenu name="Thread Color Management" /> + </submenu> + </effects-menu> + </effect> + <script> + {{ command_tag | safe }} + </script> +</inkscape-extension> |
