[Bf-blender-cvs] [158930228d6] blender2.8: Improved two tooltips

Sybren A. Stüvel noreply at git.blender.org
Thu Jun 14 14:06:46 CEST 2018


Commit: 158930228d6b4a62e74d836803793ff5b1a309d7
Author: Sybren A. Stüvel
Date:   Thu Jun 14 12:48:37 2018 +0200
Branches: blender2.8
https://developer.blender.org/rB158930228d6b4a62e74d836803793ff5b1a309d7

Improved two tooltips

Tooltips shouldn't just repeat the information from the label.

===================================================================

M	source/blender/editors/animation/anim_ops.c

===================================================================

diff --git a/source/blender/editors/animation/anim_ops.c b/source/blender/editors/animation/anim_ops.c
index 584f9e35f0b..4402ca78976 100644
--- a/source/blender/editors/animation/anim_ops.c
+++ b/source/blender/editors/animation/anim_ops.c
@@ -332,7 +332,7 @@ static void ANIM_OT_start_frame_set(wmOperatorType *ot)
 	/* identifiers */
 	ot->name = "Set Start Frame";
 	ot->idname = "ANIM_OT_start_frame_set";
-	ot->description = "Set the start frame";
+	ot->description = "Set the current frame as the preview or scene start frame";
 
 	/* api callbacks */
 	ot->exec = anim_set_sfra_exec;
@@ -376,7 +376,7 @@ static void ANIM_OT_end_frame_set(wmOperatorType *ot)
 	/* identifiers */
 	ot->name = "Set End Frame";
 	ot->idname = "ANIM_OT_end_frame_set";
-	ot->description = "Set the end frame";
+	ot->description = "Set the current frame as the preview or scene end frame";
 
 	/* api callbacks */
 	ot->exec = anim_set_efra_exec;



More information about the Bf-blender-cvs mailing list