Improved two tooltips

Tooltips shouldn't just repeat the information from the label.
This commit is contained in:
Sybren A. Stüvel 2018-06-14 12:48:37 +02:00
parent f4dc4bd275
commit 158930228d
1 changed files with 2 additions and 2 deletions

View File

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