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:
authorJoep Peters <Joep>2019-01-22 17:35:51 +0300
committerBrecht Van Lommel <brechtvanlommel@gmail.com>2019-01-22 19:05:36 +0300
commit63729bc11f9f99fe4e00cae0ddcbff6220b9715b (patch)
treea14d6554fa6400cf98e55eb3b2a3b000d7e35db3 /source/blender/makesrna/intern/rna_lightprobe.c
parent1651879d3419eed71d98bc46dba4adce3c09e573 (diff)
UI: use same light icon for all light types in properties editor tabs.
Differential Revision: https://developer.blender.org/D4237
Diffstat (limited to 'source/blender/makesrna/intern/rna_lightprobe.c')
-rw-r--r--source/blender/makesrna/intern/rna_lightprobe.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/makesrna/intern/rna_lightprobe.c b/source/blender/makesrna/intern/rna_lightprobe.c
index ee8f2be39ee..45c775476b5 100644
--- a/source/blender/makesrna/intern/rna_lightprobe.c
+++ b/source/blender/makesrna/intern/rna_lightprobe.c
@@ -74,7 +74,7 @@ static void rna_def_lightprobe(BlenderRNA *brna)
srna = RNA_def_struct(brna, "LightProbe", "ID");
RNA_def_struct_ui_text(srna, "LightProbe", "Light Probe data-block for lighting capture objects");
- RNA_def_struct_ui_icon(srna, ICON_LIGHTPROBE_CUBEMAP);
+ RNA_def_struct_ui_icon(srna, ICON_OUTLINER_OB_LIGHTPROBE);
prop = RNA_def_property(srna, "type", PROP_ENUM, PROP_NONE);
RNA_def_property_enum_items(prop, lightprobe_type_items);