Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSybren A. Stüvel <sybren@stuvel.eu>2018-06-14 13:48:37 +0300
committerSybren A. Stüvel <sybren@stuvel.eu>2018-06-14 14:55:24 +0300
commit158930228d6b4a62e74d836803793ff5b1a309d7 (patch)
tree35124e77dc3175747b3fbe9bda64346c04ded8c5 /source/blender/editors/animation/anim_ops.c
parentf4dc4bd275fd546c9d9084335adff7f4d1c62abe (diff)
Improved two tooltips
Tooltips shouldn't just repeat the information from the label.
Diffstat (limited to 'source/blender/editors/animation/anim_ops.c')
-rw-r--r--source/blender/editors/animation/anim_ops.c4
1 files changed, 2 insertions, 2 deletions
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;