GP: Fix Fx Wave options panel

The orientation was layout vertical
This commit is contained in:
Antonio Vazquez 2018-09-28 18:55:53 +02:00
parent c87d6048b9
commit 0c6103557a
1 changed files with 2 additions and 1 deletions

View File

@ -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")