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

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'release/scripts/templates_py')
-rw-r--r--release/scripts/templates_py/addon_add_object.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/release/scripts/templates_py/addon_add_object.py b/release/scripts/templates_py/addon_add_object.py
index 6e51149e451..47997069cbb 100644
--- a/release/scripts/templates_py/addon_add_object.py
+++ b/release/scripts/templates_py/addon_add_object.py
@@ -68,11 +68,11 @@ def add_object_button(self, context):
icon='PLUGIN')
-# This allows you to right click on a button and link to the manual
+# This allows you to right click on a button and link to documentation
def add_object_manual_map():
- url_manual_prefix = "https://docs.blender.org/manual/en/dev/"
+ url_manual_prefix = "https://docs.blender.org/manual/en/latest/"
url_manual_mapping = (
- ("bpy.ops.mesh.add_object", "editors/3dview/object"),
+ ("bpy.ops.mesh.add_object", "scene_layout/object/types.html"),
)
return url_manual_prefix, url_manual_mapping