[Bf-blender-cvs] [3a39d8f8669] greasepencil-object: GPencil: UI - Put Threshold before Glow color

Antonio Vazquez noreply at git.blender.org
Mon Feb 17 17:24:37 CET 2020


Commit: 3a39d8f8669b9aff5cb1487b4dc2a4c3fa9bab93
Author: Antonio Vazquez
Date:   Mon Feb 17 17:18:38 2020 +0100
Branches: greasepencil-object
https://developer.blender.org/rB3a39d8f8669b9aff5cb1487b4dc2a4c3fa9bab93

GPencil: UI - Put Threshold before Glow color

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

M	release/scripts/startup/bl_ui/properties_data_shaderfx.py

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

diff --git a/release/scripts/startup/bl_ui/properties_data_shaderfx.py b/release/scripts/startup/bl_ui/properties_data_shaderfx.py
index 6ce040ebe97..23b661cc61b 100644
--- a/release/scripts/startup/bl_ui/properties_data_shaderfx.py
+++ b/release/scripts/startup/bl_ui/properties_data_shaderfx.py
@@ -130,12 +130,12 @@ class DATA_PT_shader_fx(ShaderFxButtonsPanel, Panel):
 
     def FX_GLOW(self, layout, fx):
         layout.prop(fx, "mode")
-        layout.prop(fx, "glow_color")
         if fx.mode == 'LUMINANCE':
             layout.prop(fx, "threshold")
         else:
             layout.prop(fx, "select_color")
 
+        layout.prop(fx, "glow_color")
         layout.separator()
         layout.prop(fx, "blend_mode", text="Blend")
         layout.prop(fx, "opacity")



More information about the Bf-blender-cvs mailing list