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:
Diffstat (limited to 'source/blender/editors/space_nla/nla_select.c')
-rw-r--r--source/blender/editors/space_nla/nla_select.c7
1 files changed, 2 insertions, 5 deletions
diff --git a/source/blender/editors/space_nla/nla_select.c b/source/blender/editors/space_nla/nla_select.c
index f723696de69..2bd2b660bcd 100644
--- a/source/blender/editors/space_nla/nla_select.c
+++ b/source/blender/editors/space_nla/nla_select.c
@@ -67,16 +67,13 @@ static short selmodes_to_flagmodes(short sel)
switch (sel) {
case SELECT_SUBTRACT:
return ACHANNEL_SETFLAG_CLEAR;
- break;
-
+
case SELECT_INVERT:
return ACHANNEL_SETFLAG_INVERT;
- break;
-
+
case SELECT_ADD:
default:
return ACHANNEL_SETFLAG_ADD;
- break;
}
}