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:
authorSergey Sharybin <sergey.vfx@gmail.com>2019-02-08 14:13:02 +0300
committerSergey Sharybin <sergey.vfx@gmail.com>2019-02-08 14:17:00 +0300
commitbf2c5217b317d03051399da2020b209d27515cfb (patch)
treeddc7dfe6d02cee930ebb67ee0cbebc10b76f59a3 /source/blender/depsgraph/intern/depsgraph.h
parente4187771099c2795b8d1d8f79a1d1b91b57d45d5 (diff)
Fix T61231: File open and undo looses unkeyed changes
Only flush copy-on-write to animation when user makes changes.
Diffstat (limited to 'source/blender/depsgraph/intern/depsgraph.h')
-rw-r--r--source/blender/depsgraph/intern/depsgraph.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/depsgraph/intern/depsgraph.h b/source/blender/depsgraph/intern/depsgraph.h
index 9a0b01d8679..d33b8945d17 100644
--- a/source/blender/depsgraph/intern/depsgraph.h
+++ b/source/blender/depsgraph/intern/depsgraph.h
@@ -73,9 +73,9 @@ enum RelationFlag {
* affected by user input. */
RELATION_FLAG_FLUSH_USER_EDIT_ONLY = (1 << 2),
/* The relation can not be killed by the cyclic dependencies solver. */
- RELATION_FLAG_GODMODE = (1 << 3),
+ RELATION_FLAG_GODMODE = (1 << 4),
/* Relation will check existance before being added. */
- RELATION_CHECK_BEFORE_ADD = (1 << 4),
+ RELATION_CHECK_BEFORE_ADD = (1 << 5),
};
/* B depends on A (A -> B) */