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:
authorJoshua Leung <aligorith@gmail.com>2014-05-09 08:18:28 +0400
committerJoshua Leung <aligorith@gmail.com>2014-05-09 08:18:28 +0400
commitc5a946b2b8baa0330237db724e5af383a9ae3088 (patch)
tree2101a21a70dfdbdc29af97bbfc97291f42572f3b
parentb2b7b3f796fb850ff3dadaa3b751b1936eb47bf6 (diff)
Tweaking tooltip for NLA tweakmode enter to be a bit more descriptive
-rw-r--r--source/blender/editors/space_nla/nla_edit.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/editors/space_nla/nla_edit.c b/source/blender/editors/space_nla/nla_edit.c
index 51a8413a6e5..93d0f7527ef 100644
--- a/source/blender/editors/space_nla/nla_edit.c
+++ b/source/blender/editors/space_nla/nla_edit.c
@@ -162,7 +162,7 @@ void NLA_OT_tweakmode_enter(wmOperatorType *ot)
/* identifiers */
ot->name = "Enter Tweak Mode";
ot->idname = "NLA_OT_tweakmode_enter";
- ot->description = "Enter tweaking mode for the action referenced by the active strip";
+ ot->description = "Enter tweaking mode for the action referenced by the active strip to edit its keyframes";
/* api callbacks */
ot->exec = nlaedit_enable_tweakmode_exec;