From 4bbbba5bc2fdcd5848376d06eb925060f0d1aebd Mon Sep 17 00:00:00 2001 From: Brecht Van Lommel Date: Fri, 2 Sep 2022 17:35:30 +0200 Subject: [PATCH] Fix Cycles scrambling distance incorrectly showing as enabled for Sobol-Burley Contributed by Alaska. Differential Revision: https://developer.blender.org/D15849 --- intern/cycles/blender/addon/ui.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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")