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:
authorBrecht Van Lommel <brechtvanlommel@gmail.com>2018-05-30 14:57:30 +0300
committerBrecht Van Lommel <brechtvanlommel@gmail.com>2018-05-30 15:07:22 +0300
commit8ed723745e1bf939ed59062256cf7808219d8748 (patch)
treee71ab7c9c775462e43e0a44df6449468fe74dba1 /source/blender/makesdna/DNA_ID.h
parent292125bfd35942ff12b1fe8e997e0417175e9947 (diff)
Fix unnecessary Cycles render updates when selecting objects.
Diffstat (limited to 'source/blender/makesdna/DNA_ID.h')
-rw-r--r--source/blender/makesdna/DNA_ID.h5
1 files changed, 2 insertions, 3 deletions
diff --git a/source/blender/makesdna/DNA_ID.h b/source/blender/makesdna/DNA_ID.h
index 4d59a7c9669..7af0939f454 100644
--- a/source/blender/makesdna/DNA_ID.h
+++ b/source/blender/makesdna/DNA_ID.h
@@ -491,9 +491,8 @@ enum {
ID_RECALC_DRAW_CACHE = 1 << 3,
ID_RECALC_GEOMETRY = 1 << 4,
ID_RECALC_TRANSFORM = 1 << 5,
- ID_RECALC_COLLECTIONS = 1 << 6,
- ID_RECALC_COPY_ON_WRITE = 1 << 7,
- ID_RECALC_TIME = 1 << 8,
+ ID_RECALC_COPY_ON_WRITE = 1 << 6,
+ ID_RECALC_TIME = 1 << 7,
/* Special flag to check if SOMETHING was changed. */
ID_RECALC_ALL = (~(int)0),
};