Fix T46169: Link to bpy API in addons tab of user preferences is outdated.

Now use auto-generated one, like e.g. for link in Help main menu...
This commit is contained in:
Bastien Montagne 2015-09-20 09:49:36 +02:00 committed by Sergey Sharybin
parent c08896e2c4
commit 74b210387f
1 changed files with 1 additions and 1 deletions

View File

@ -1180,7 +1180,7 @@ class USERPREF_MT_addons_dev_guides(Menu):
def draw(self, context):
layout = self.layout
layout.operator("wm.url_open", text="API Concepts", icon='URL').url = "http://wiki.blender.org/index.php/Dev:2.5/Py/API/Intro"
layout.operator("wm.url_open", text="API Concepts", icon='URL').url = bpy.types.WM_OT_doc_view._prefix + "/info_quickstart.html"
layout.operator("wm.url_open", text="Addon Guidelines", icon='URL').url = "http://wiki.blender.org/index.php/Dev:2.5/Py/Scripts/Guidelines/Addons"
layout.operator("wm.url_open", text="How to share your addon", icon='URL').url = "http://wiki.blender.org/index.php/Dev:Py/Sharing"