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:
authorBastien Montagne <montagne29@wanadoo.fr>2019-04-30 18:20:21 +0300
committerBastien Montagne <montagne29@wanadoo.fr>2019-04-30 18:20:21 +0300
commitd48a2f4a37b85c33917acd8dd514b69f017aac7f (patch)
tree56244a018f78a610efb278e7eccaad8b3cc19f72 /source/blender/editors/space_action
parent26bc7414f7a4c3eb7afff8c56eec034146e72e37 (diff)
Select: Add 'deselect on nothing' to NLA editor.
Should be last part of T63995.
Diffstat (limited to 'source/blender/editors/space_action')
-rw-r--r--source/blender/editors/space_action/action_select.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/editors/space_action/action_select.c b/source/blender/editors/space_action/action_select.c
index 6082e942842..192134949d5 100644
--- a/source/blender/editors/space_action/action_select.c
+++ b/source/blender/editors/space_action/action_select.c
@@ -1558,7 +1558,7 @@ static void mouse_action_keys(bAnimContext *ac,
/* free list of channels, since it's not used anymore */
ANIM_animdata_freelist(&anim_data);
- /* For replacing selection, if we have somthing to select, we have to clear existing selection.
+ /* For replacing selection, if we have something to select, we have to clear existing selection.
* The same goes if we found nothing to select, and deselect_all is true
* (deselect on nothing behavior). */
if ((select_mode == SELECT_REPLACE && found) || (!found && deselect_all)) {