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>2007-10-05 13:03:37 +0400
committerJoshua Leung <aligorith@gmail.com>2007-10-05 13:03:37 +0400
commite96b27dd720093776d2592693c0c231017ff2c30 (patch)
tree014b95872b595c19d2346903d27d3667cdef68cc /source/blender
parenta41da4fe110410394b964400bb1b5f49fa569f3b (diff)
Action Editor - Sliders Bugfix:
Pasting values into/onto sliders in the Action Editor didn't insert new keyframes for the related channels. I've added a one-liner to the interface/buttons code which calls the button callback upon pasting values, thus fixing this bug and perhaps some others in the future. This shouldn't cause any problems in general (I haven't seen any yet!). Thanks to venomgfx (Pablo Vazquez) for reporting this.
Diffstat (limited to 'source/blender')
-rw-r--r--source/blender/src/interface.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/source/blender/src/interface.c b/source/blender/src/interface.c
index 0eb018522bf..38584943d6a 100644
--- a/source/blender/src/interface.c
+++ b/source/blender/src/interface.c
@@ -482,6 +482,7 @@ static int ui_but_copy_paste(uiBut *but, char mode)
}
else {
ui_set_but_val(but, but_copypaste_val);
+ uibut_do_func(but);
ui_check_but(but);
return 1;
}