Fix T40267: Addon's bug tracker urls not respected

This commit is contained in:
Campbell Barton 2014-05-21 12:18:25 +10:00
parent 0865b4f48e
commit 628353835c
Notes: blender-bot 2023-02-14 20:07:31 +01:00
Referenced by issue #40290, False (or malfunctioning) dependency-cycle warning when adding dupligroup objects to another group.
Referenced by issue blender/blender-addons#40267, Addon's bug tracker urls not respected
1 changed files with 3 additions and 2 deletions

View File

@ -1310,8 +1310,9 @@ class USERPREF_PT_addons(Panel):
split.label(text="Internet:")
if info["wiki_url"]:
split.operator("wm.url_open", text="Documentation", icon='HELP').url = info["wiki_url"]
tracker_url = "http://developer.blender.org/maniphest/task/create/?project=3&type=Bug"
split.operator("wm.url_open", text="Report a Bug", icon='URL').url = tracker_url
split.operator("wm.url_open", text="Report a Bug", icon='URL').url = info.get(
"tracker_url",
"http://developer.blender.org/maniphest/task/create/?project=3&type=Bug")
if user_addon:
split.operator("wm.addon_remove", text="Remove", icon='CANCEL').module = mod.__name__