From 3f1f0796a1086eae878c4fc49dd496a872a809a7 Mon Sep 17 00:00:00 2001 From: Daniel Salazar <zanqdo@gmail.com> Date: Wed, 30 Mar 2011 21:12:37 +0000 Subject: [PATCH] little better tooltip for rotobezier keyframing buttons. People seem to think they need to select CVs before inserting keyframes and that isn't really nessesary --- animation_rotobezier.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/animation_rotobezier.py b/animation_rotobezier.py index 08c71bf3f..5b92fc32a 100644 --- a/animation_rotobezier.py +++ b/animation_rotobezier.py @@ -125,7 +125,7 @@ class VIEW3D_PT_rotobezier(bpy.types.Panel): class CURVE_OT_insert_keyframe_rotobezier(bpy.types.Operator): bl_label = 'Insert' bl_idname = 'curve.insert_keyframe_rotobezier' - bl_description = 'Insert a RotoBezier Keyframe' + bl_description = 'Insert/Replace all Keyframes in current frame' bl_options = {'REGISTER', 'UNDO'} # on mouse up: @@ -178,7 +178,7 @@ class CURVE_OT_insert_keyframe_rotobezier(bpy.types.Operator): class CURVE_OT_delete_keyframe_rotobezier(bpy.types.Operator): bl_label = 'Delete' bl_idname = 'curve.delete_keyframe_rotobezier' - bl_description = 'Delete a RotoBezier Keyframe' + bl_description = 'Delete all keyframes in current frame' bl_options = {'REGISTER', 'UNDO'} # on mouse up: -- GitLab