[Bf-blender-cvs] [34c4133] master: Tweaks to descriptions for Action Layer Up/Down

Joshua Leung noreply at git.blender.org
Sat Apr 4 00:38:29 CEST 2015


Commit: 34c4133daf01cd7b2b94bc54b3b78de21b3091b9
Author: Joshua Leung
Date:   Sat Apr 4 01:44:08 2015 +1300
Branches: master
https://developer.blender.org/rB34c4133daf01cd7b2b94bc54b3b78de21b3091b9

Tweaks to descriptions for Action Layer Up/Down

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

M	source/blender/editors/space_action/action_data.c

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

diff --git a/source/blender/editors/space_action/action_data.c b/source/blender/editors/space_action/action_data.c
index f7e110e..a4eadd8 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;




More information about the Bf-blender-cvs mailing list