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 00:44:53 +0300
committerCampbell Barton <ideasman42@gmail.com>2019-02-19 00:48:15 +0300
commitfc10e89918cbd42a9d787801a896695c78ed7b34 (patch)
tree63baa3e5c98c8845e3d263f0c74d95184672d5b9 /source/blender/editors/object
parentecdd1864d16206eb45a6c95d9fcc0808a2c0087e (diff)
DNA: rename Object.col -> color
Was confusing, unrelated to: colbits, col_mask, col_group, actcol & totcol.
Diffstat (limited to 'source/blender/editors/object')
-rw-r--r--source/blender/editors/object/object_select.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/editors/object/object_select.c b/source/blender/editors/object/object_select.c
index 3f8936400a2..6cc9a495597 100644
--- a/source/blender/editors/object/object_select.c
+++ b/source/blender/editors/object/object_select.c
@@ -921,7 +921,7 @@ static bool select_grouped_color(bContext *C, Object *ob)
CTX_DATA_BEGIN (C, Base *, base, selectable_bases)
{
- if (((base->flag & BASE_SELECTED) == 0) && (compare_v3v3(base->object->col, ob->col, 0.005f))) {
+ if (((base->flag & BASE_SELECTED) == 0) && (compare_v3v3(base->object->color, ob->color, 0.005f))) {
ED_object_base_select(base, BA_SELECT);
changed = true;
}