summaryrefslogtreecommitdiff
path: root/lib/extensions/object_commands.py
diff options
context:
space:
mode:
Diffstat (limited to 'lib/extensions/object_commands.py')
-rw-r--r--lib/extensions/object_commands.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/extensions/object_commands.py b/lib/extensions/object_commands.py
index 851d4a34..4d692cae 100644
--- a/lib/extensions/object_commands.py
+++ b/lib/extensions/object_commands.py
@@ -17,7 +17,7 @@ class ObjectCommands(CommandsExtension):
if not self.get_elements():
return
- if not self.svg.selected:
+ if not self.svg.selection:
inkex.errormsg(_("Please select one or more objects to which to attach commands."))
return
@@ -34,6 +34,6 @@ class ObjectCommands(CommandsExtension):
seen_nodes = set()
for element in self.elements:
- if element.node not in seen_nodes:
+ if element.node not in seen_nodes and element.shape:
add_commands(element, commands)
seen_nodes.add(element.node)