From bfff9ca5f13dde6e90182297726c8b863ef97ff7 Mon Sep 17 00:00:00 2001 From: Brecht Van Lommel Date: Mon, 22 Nov 2021 15:56:51 +0100 Subject: Fix confusing new Cycles UI terminology * Rename "Auto Tiles" to "Use Tiling", it's not really automatic and confusing with the old auto tile size add-on. * Rename "Adaptive" scrambling distance to "Automatic", to avoid confusion with adaptive sampling. --- intern/cycles/blender/addon/ui.py | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'intern/cycles/blender/addon/ui.py') diff --git a/intern/cycles/blender/addon/ui.py b/intern/cycles/blender/addon/ui.py index 635d92c2629..57741447608 100644 --- a/intern/cycles/blender/addon/ui.py +++ b/intern/cycles/blender/addon/ui.py @@ -295,13 +295,13 @@ class CYCLES_RENDER_PT_sampling_advanced(CyclesButtonsPanel, Panel): layout.separator() - col = layout.column(align=True) - col.active = not (cscene.use_adaptive_sampling and cscene.use_preview_adaptive_sampling) - col.prop(cscene, "scrambling_distance", text="Scrambling Distance") - col.prop(cscene, "adaptive_scrambling_distance", text="Adaptive") - sub = col.row(align=True) + heading = layout.column(align=True, heading="Scrambling Distance") + heading.active = not (cscene.use_adaptive_sampling and cscene.use_preview_adaptive_sampling) + heading.prop(cscene, "auto_scrambling_distance", text="Automatic") + sub = heading.row() sub.active = not cscene.use_preview_adaptive_sampling sub.prop(cscene, "preview_scrambling_distance", text="Viewport") + heading.prop(cscene, "scrambling_distance", text="Multiplier") layout.separator() -- cgit v1.2.3