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>2020-01-20 09:54:38 +0300
committerCampbell Barton <ideasman42@gmail.com>2020-01-20 09:54:38 +0300
commit3fb8191d1dbd5c50c8bd5b0821e7cf1bb9885736 (patch)
tree1ee279ecf0b6eeee56f1d5e3378d301ff5893cb9 /source/blender/editors/object/object_add.c
parent9b70950e3c93986db216c28396aacdd6343a10aa (diff)
Cleanup: rename lightprobe configure to type_set
Consistent with similar API functions.
Diffstat (limited to 'source/blender/editors/object/object_add.c')
-rw-r--r--source/blender/editors/object/object_add.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/editors/object/object_add.c b/source/blender/editors/object/object_add.c
index 3cd957596f8..09a8af6333c 100644
--- a/source/blender/editors/object/object_add.c
+++ b/source/blender/editors/object/object_add.c
@@ -604,7 +604,7 @@ static int lightprobe_add_exec(bContext *C, wmOperator *op)
probe = (LightProbe *)ob->data;
- BKE_lightprobe_configure(probe, type);
+ BKE_lightprobe_type_set(probe, type);
DEG_relations_tag_update(CTX_data_main(C));