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>2010-05-21 17:01:18 +0400
committerJoshua Leung <aligorith@gmail.com>2010-05-21 17:01:18 +0400
commit64d057e8878acc7baf470fe2c01fe283eb8c65e1 (patch)
tree86fdfc11fe8e89456f2f6669a86b14a9797395e5 /source/blender/editors/space_nla
parent391c5fba71a2bbb68598c168dcb6e0651924a001 (diff)
Bugfix: #22385: Shift-click in NLA does not do 'extend' select
Caused by typo in selection flags code.
Diffstat (limited to 'source/blender/editors/space_nla')
-rw-r--r--source/blender/editors/space_nla/nla_select.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/editors/space_nla/nla_select.c b/source/blender/editors/space_nla/nla_select.c
index b76d90bd0f9..1416e0afdc9 100644
--- a/source/blender/editors/space_nla/nla_select.c
+++ b/source/blender/editors/space_nla/nla_select.c
@@ -70,7 +70,7 @@ static short selmodes_to_flagmodes (short sel)
break;
case SELECT_INVERT:
- return ACHANNEL_SETFLAG_TOGGLE;
+ return ACHANNEL_SETFLAG_INVERT;
break;
case SELECT_ADD: