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>2015-04-03 15:44:08 +0300
committerJoshua Leung <aligorith@gmail.com>2015-04-04 01:37:05 +0300
commit34c4133daf01cd7b2b94bc54b3b78de21b3091b9 (patch)
tree0ef6ba061815b5377c3ee8e9524d2481a9d3a9f2
parenta3fdc6b75525b3cdd02d6d29a7965aa9f6ae334c (diff)
Tweaks to descriptions for Action Layer Up/Down
-rw-r--r--source/blender/editors/space_action/action_data.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/editors/space_action/action_data.c b/source/blender/editors/space_action/action_data.c
index f7e110e3b90..a4eadd8a63b 100644
--- a/source/blender/editors/space_action/action_data.c
+++ b/source/blender/editors/space_action/action_data.c
@@ -726,7 +726,7 @@ void ACTION_OT_layer_next(wmOperatorType *ot)
/* identifiers */
ot->name = "Next Layer";
ot->idname = "ACTION_OT_layer_next";
- ot->description = "Edit action in animation layer above the current action in the NLA Stack";
+ ot->description = "Switch to editing action in animation layer above the current action in the NLA Stack";
/* callbacks */
ot->exec = action_layer_next_exec;
@@ -823,7 +823,7 @@ void ACTION_OT_layer_prev(wmOperatorType *ot)
/* identifiers */
ot->name = "Previous Layer";
ot->idname = "ACTION_OT_layer_prev";
- ot->description = "Edit action in animation layer below the current action in the NLA Stack";
+ ot->description = "Switch to editing action in animation layer below the current action in the NLA Stack";
/* callbacks */
ot->exec = action_layer_prev_exec;