Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender-addons.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'curve_tools/remove_doubles.py')
-rw-r--r--curve_tools/remove_doubles.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/curve_tools/remove_doubles.py b/curve_tools/remove_doubles.py
index 151b19b0..cf955980 100644
--- a/curve_tools/remove_doubles.py
+++ b/curve_tools/remove_doubles.py
@@ -109,7 +109,7 @@ class CurveRemvDbs(bpy.types.Operator):
@classmethod
def poll(cls, context):
- return util.Selected1Curve()
+ return util.Selected1OrMoreCurves()
def execute(self, context):
removed=main(context, self.distance)