[Bf-blender-cvs] [0c6103557a1] blender2.8: GP: Fix Fx Wave options panel

Antonioya noreply at git.blender.org
Fri Sep 28 18:56:20 CEST 2018


Commit: 0c6103557a185dcc0d14cf336fc96688a108fba2
Author: Antonioya
Date:   Fri Sep 28 18:55:53 2018 +0200
Branches: blender2.8
https://developer.blender.org/rB0c6103557a185dcc0d14cf336fc96688a108fba2

GP: Fix Fx Wave options panel

The orientation was layout vertical

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

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 a406082ab55..6725d354b2b 100644
--- a/release/scripts/startup/bl_ui/properties_data_shaderfx.py
+++ b/release/scripts/startup/bl_ui/properties_data_shaderfx.py
@@ -80,7 +80,8 @@ class DATA_PT_shader_fx(ShaderFxButtonsPanel, Panel):
             layout.prop(fx, "factor")
 
     def FX_WAVE(self, layout, fx):
-        layout.prop(fx, "orientation", expand=True)
+        row = layout.row(align=True)
+        row.prop(fx, "orientation", expand=True)
 
         layout.separator()
         layout.prop(fx, "amplitude")



More information about the Bf-blender-cvs mailing list