summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorLex Neva <github.com@lexneva.name>2018-08-17 23:02:27 -0400
committerLex Neva <github.com@lexneva.name>2018-08-17 23:02:27 -0400
commit8a0ed9b9658306341d19e3ca32ee01c641063937 (patch)
treef88d4a99852bd6c64dfedddae566e3226be56347 /lib
parent13016f50ecace38a93f7d8e55bdad8b21fb0d2c7 (diff)
add description for layer commands too
Diffstat (limited to 'lib')
-rw-r--r--lib/extensions/layer_commands.py6
1 files changed, 4 insertions, 2 deletions
diff --git a/lib/extensions/layer_commands.py b/lib/extensions/layer_commands.py
index 88170f66..576af044 100644
--- a/lib/extensions/layer_commands.py
+++ b/lib/extensions/layer_commands.py
@@ -3,13 +3,14 @@ import sys
import inkex
from .commands import CommandsExtension
+from ..commands import LAYER_COMMANDS, get_command_description
from ..i18n import _
-from ..svg.tags import SVG_USE_TAG, XLINK_HREF
+from ..svg.tags import *
from ..svg import get_correction_transform
class LayerCommands(CommandsExtension):
- COMMANDS = ["ignore_layer"]
+ COMMANDS = LAYER_COMMANDS
def ensure_current_layer(self):
# if no layer is selected, inkex defaults to the root, which isn't
@@ -37,6 +38,7 @@ class LayerCommands(CommandsExtension):
node = inkex.etree.SubElement(self.current_layer, SVG_USE_TAG,
{
"id": self.uniqueId("use"),
+ INKSCAPE_LABEL: _("Ink/Stitch Command") + ": %s" % get_command_description(command),
XLINK_HREF: "#inkstitch_%s" % command,
"height": "100%",
"width": "100%",