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:
authorCampbell Barton <ideasman42@gmail.com>2019-02-19 01:42:06 +0300
committerCampbell Barton <ideasman42@gmail.com>2019-02-19 01:45:48 +0300
commit53b484d08106d5188e9323379bbe59f0ad702495 (patch)
treed6fcebafacc9c60aebb7bd07684e39ba82c92310 /source/blender/makesdna/DNA_object_types.h
parentfc10e89918cbd42a9d787801a896695c78ed7b34 (diff)
DNA: rename select_color -> select_id
The term color is misleading, it's an integer id that happens to be written to a color in some cases, then converted back to an integer.
Diffstat (limited to 'source/blender/makesdna/DNA_object_types.h')
-rw-r--r--source/blender/makesdna/DNA_object_types.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/makesdna/DNA_object_types.h b/source/blender/makesdna/DNA_object_types.h
index cf88d2591b2..5b38875caa6 100644
--- a/source/blender/makesdna/DNA_object_types.h
+++ b/source/blender/makesdna/DNA_object_types.h
@@ -376,7 +376,7 @@ typedef struct Object {
char empty_image_depth;
char _pad8[2];
- int select_color;
+ int select_id;
/** Contains data for levels of detail. */
ListBase lodlevels;