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>2008-01-25 14:27:38 +0300
committerJoshua Leung <aligorith@gmail.com>2008-01-25 14:27:38 +0300
commitbd321b8afe485138bd81785cbdf36f0a27378528 (patch)
tree30c5f2971f3706656bc76ef5894b18ebb1092eda /source/blender/src/editaction.c
parent264c8d94f93c97e3c9fc21998e8565035130db5a (diff)
Two bugfixes:
* Buttons to change position of constraints in constraint stack are now totally hidden if they don't do anything valid. It'll have to be this way until we get grey-able buttons. * Duplicating keyframes in Action Editor now sets correct undo-string
Diffstat (limited to 'source/blender/src/editaction.c')
-rw-r--r--source/blender/src/editaction.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/source/blender/src/editaction.c b/source/blender/src/editaction.c
index 6c9e6ce1f6f..1c091ed39d9 100644
--- a/source/blender/src/editaction.c
+++ b/source/blender/src/editaction.c
@@ -1160,6 +1160,7 @@ void duplicate_action_keys (void)
BLI_freelistN(&act_data);
/* now, go into transform-grab mode, to move keys */
+ BIF_TransformSetUndo("Add Duplicate");
transform_action_keys('g', 0);
}