added animation data update to the help menu as discussed in last meeting.

This commit is contained in:
Campbell Barton
2010-08-29 15:40:48 +00:00
parent c2e43d7c3b
commit 69949d730b
2 changed files with 4 additions and 2 deletions

View File

@@ -681,7 +681,7 @@ import bpy
class UpdateAnimData(bpy.types.Operator):
''''''
'''Update data paths from 2.53 to edited data paths of drivers and fcurves'''
bl_idname = "anim.update_data_paths"
bl_label = "Update Animation Data"

View File

@@ -317,7 +317,9 @@ class INFO_MT_help(bpy.types.Menu):
layout.operator("wm.url_open", text="Report a Bug", icon='URL').url = 'http://projects.blender.org/tracker/?atid=498&group_id=9&func=browse'
layout.separator()
layout.operator("wm.url_open", text="Python API Reference", icon='URL').url = 'http://www.blender.org/documentation/250PythonDoc/contents.html'
layout.operator("help.operator_cheat_sheet")
layout.operator("help.operator_cheat_sheet", icon='TEXT')
layout.separator()
layout.operator("anim.update_data_paths", text="FCurve/Driver 2.54 fix", icon='HELP')
layout.separator()
layout.operator("wm.splash")