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 'add_curve_extra_objects/__init__.py')
-rw-r--r--add_curve_extra_objects/__init__.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/add_curve_extra_objects/__init__.py b/add_curve_extra_objects/__init__.py
index fbb0838b..e5a1bbcd 100644
--- a/add_curve_extra_objects/__init__.py
+++ b/add_curve_extra_objects/__init__.py
@@ -28,8 +28,8 @@ bl_info = {
"location": "View3D > Add > Curve > Extra Objects",
"description": "Add extra curve object types",
"warning": "",
- "wiki_url": "https://wiki.blender.org/index.php/Extensions:2.6/Py/"
- "Scripts/Curve/Curve_Objects",
+ "wiki_url": "https://docs.blender.org/manual/en/dev/addons/"
+ "add_curve/extra_objects.html",
"category": "Add Curve"
}
@@ -247,9 +247,9 @@ def menu_func(self, context):
layout = self.layout
layout.operator_menu_enum("curve.curveaceous_galore", "ProfileType", icon='CURVE_DATA')
- layout.operator_menu_enum("curve.spirals", "spiral_type", icon='CURVE_DATA')
+ layout.operator_menu_enum("curve.spirals", "spiral_type", icon='FORCE_VORTEX')
layout.separator()
- layout.operator("curve.curlycurve", text="Curly Curve", icon='CURVE_DATA')
+ layout.operator("curve.curlycurve", text="Curly Curve", icon='GP_ONLY_SELECTED')
if context.mode != 'OBJECT':
# fix in D2142 will allow to work in EDIT_CURVE
return None