inkstitch/templates/layer_commands.xml

22 wiersze
905 B
XML
Czysty Zwykły widok Historia

2018-08-17 02:50:34 +00:00
<?xml version="1.0" encoding="UTF-8"?>
<inkscape-extension translationdomain="inkstitch" xmlns="http://www.inkscape.org/namespace/inkscape/extension">
<name>Add Layer Commands</name>
<id>org.inkstitch.layer_commands</id>
<param name="description" type="description">Commands will be added to the currently-selected layer.</param>
2018-08-20 19:49:19 +00:00
{% for command, description in layer_commands %}
2021-09-27 13:18:54 +00:00
<param name="{{ command }}" type="boolean" gui-text="{{ description }}">false</param>
2018-08-20 19:49:19 +00:00
{% endfor %}
2018-08-17 02:50:34 +00:00
<param name="extension" type="string" gui-hidden="true">layer_commands</param>
<effect>
<object-type>all</object-type>
<effects-menu>
<submenu name="Ink/Stitch" translatable="no">
<submenu name="Commands" />
2018-08-21 00:42:02 +00:00
</submenu>
</effects-menu>
2018-08-17 02:50:34 +00:00
</effect>
<script>
2020-03-07 03:39:25 +00:00
{{ command_tag | safe }}
2018-08-17 02:50:34 +00:00
</script>
</inkscape-extension>