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
path: root/intern
diff options
context:
space:
mode:
authorBrecht Van Lommel <brecht@blender.org>2022-09-02 18:35:30 +0300
committerBrecht Van Lommel <brecht@blender.org>2022-09-02 18:36:58 +0300
commit4bbbba5bc2fdcd5848376d06eb925060f0d1aebd (patch)
treeb1ac366c7c3af630bfc9caf1ceb44e2aca2d77a5 /intern
parentaa174f632e32695128e149e0559ac10e7f1d3f57 (diff)
Fix Cycles scrambling distance incorrectly showing as enabled for Sobol-Burley
Contributed by Alaska. Differential Revision: https://developer.blender.org/D15849
Diffstat (limited to 'intern')
-rw-r--r--intern/cycles/blender/addon/ui.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/intern/cycles/blender/addon/ui.py b/intern/cycles/blender/addon/ui.py
index eb89e76dc75..37fecec771b 100644
--- a/intern/cycles/blender/addon/ui.py
+++ b/intern/cycles/blender/addon/ui.py
@@ -305,7 +305,7 @@ class CYCLES_RENDER_PT_sampling_advanced(CyclesButtonsPanel, Panel):
layout.separator()
heading = layout.column(align=True, heading="Scrambling Distance")
- heading.active = cscene.sampling_pattern != 'SOBOL_BURLEY'
+ heading.active = cscene.sampling_pattern != 'SOBOL'
heading.prop(cscene, "auto_scrambling_distance", text="Automatic")
heading.prop(cscene, "preview_scrambling_distance", text="Viewport")
heading.prop(cscene, "scrambling_distance", text="Multiplier")