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 'release/scripts/modules/keyingsets_utils.py')
-rw-r--r--release/scripts/modules/keyingsets_utils.py6
1 files changed, 4 insertions, 2 deletions
diff --git a/release/scripts/modules/keyingsets_utils.py b/release/scripts/modules/keyingsets_utils.py
index 7ce5f3e029b..48071117bd4 100644
--- a/release/scripts/modules/keyingsets_utils.py
+++ b/release/scripts/modules/keyingsets_utils.py
@@ -153,8 +153,10 @@ def get_transform_generators_base_info(data):
# no path in this case
path = ""
- # data on ID-blocks directly should get grouped by the KeyingSet
- grouping = None
+ # transform data on ID-blocks directly should get grouped under a
+ # hardcoded label ("Object Transforms") so that they get grouped
+ # consistently when keyframed directly
+ grouping = "Object Transforms"
else:
# get the path to the ID-block
path = data.path_from_id()