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:
authorClément Foucault <foucault.clem@gmail.com>2019-06-26 15:05:55 +0300
committerClément Foucault <foucault.clem@gmail.com>2019-06-26 15:05:55 +0300
commit310bd2f811acd7ae5d149274720d200df140558e (patch)
tree8542dc08d0c53fd829a22157bb077c22582199bd /source/blender/blenkernel/intern/lightprobe.c
parentb3a2de9d181ab69c192c737e24a7b808081df06b (diff)
Fix T65942 Eevee: Reflection plane has "show data" checked by default
Disable by default and rename option to "Show Preview Plane".
Diffstat (limited to 'source/blender/blenkernel/intern/lightprobe.c')
-rw-r--r--source/blender/blenkernel/intern/lightprobe.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/blenkernel/intern/lightprobe.c b/source/blender/blenkernel/intern/lightprobe.c
index 01b368ee0f8..1c2f8d22f3e 100644
--- a/source/blender/blenkernel/intern/lightprobe.c
+++ b/source/blender/blenkernel/intern/lightprobe.c
@@ -45,7 +45,7 @@ void BKE_lightprobe_init(LightProbe *probe)
probe->vis_blur = 0.2f;
probe->intensity = 1.0f;
- probe->flag = LIGHTPROBE_FLAG_SHOW_INFLUENCE | LIGHTPROBE_FLAG_SHOW_DATA;
+ probe->flag = LIGHTPROBE_FLAG_SHOW_INFLUENCE;
}
void *BKE_lightprobe_add(Main *bmain, const char *name)