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

@ -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__