[Bf-blender-cvs] [e2003d92125] master: UI: reorder adaptive sampling settings in order of importance

Brecht Van Lommel noreply at git.blender.org
Sun Apr 12 16:50:42 CEST 2020


Commit: e2003d9212575038ad79791fcdfab00199bf130f
Author: Brecht Van Lommel
Date:   Sun Apr 12 15:44:06 2020 +0200
Branches: master
https://developer.blender.org/rBe2003d9212575038ad79791fcdfab00199bf130f

UI: reorder adaptive sampling settings in order of importance

===================================================================

M	intern/cycles/blender/addon/ui.py

===================================================================

diff --git a/intern/cycles/blender/addon/ui.py b/intern/cycles/blender/addon/ui.py
index 0ef813d9636..7cf615620a3 100644
--- a/intern/cycles/blender/addon/ui.py
+++ b/intern/cycles/blender/addon/ui.py
@@ -253,8 +253,8 @@ class CYCLES_RENDER_PT_sampling_adaptive(CyclesButtonsPanel, Panel):
         layout.active = cscene.use_adaptive_sampling
 
         col = layout.column(align=True)
-        col.prop(cscene, "adaptive_min_samples", text="Min Samples")
         col.prop(cscene, "adaptive_threshold", text="Noise Threshold")
+        col.prop(cscene, "adaptive_min_samples", text="Min Samples")
 
 class CYCLES_RENDER_PT_sampling_advanced(CyclesButtonsPanel, Panel):
     bl_label = "Advanced"



More information about the Bf-blender-cvs mailing list