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-02-09 12:28:19 +0300
committerJoshua Leung <aligorith@gmail.com>2007-02-09 12:28:19 +0300
commit6332fc3d8c59e8cf8e8f3e17cf0ca823a71df142 (patch)
tree4203a4c5d324d7fd2a272a29186bf19bd43d0ec2
parent0806d5df29eebd9b241605c5b3d26f8f7fb7cbb6 (diff)
Action Editor Bugfix:
Right-clicking in either the horizontal/vertical scrollbars now works correctly again. What damage 1 little number can do ;-)
-rw-r--r--source/blender/src/editaction.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/src/editaction.c b/source/blender/src/editaction.c
index 8150ffc1fdc..2dfa22ae171 100644
--- a/source/blender/src/editaction.c
+++ b/source/blender/src/editaction.c
@@ -2471,7 +2471,7 @@ static void select_all_keys_frames(bAction *act, short *mval,
return;
if (selectmode == SELECT_REPLACE) {
- deselect_actionchannel_keys(act, 0, 1);
+ deselect_actionchannel_keys(act, 0, 0);
selectmode = SELECT_ADD;
}
@@ -2551,7 +2551,7 @@ static void select_all_keys_channels(bAction *act, short *mval,
return;
if (selectmode == SELECT_REPLACE) {
- deselect_actionchannel_keys(act, 0, 1);
+ deselect_actionchannel_keys(act, 0, 0);
selectmode = SELECT_ADD;
}