From cf376bc451e56d03b4176e519793b2eccd75d0d6 Mon Sep 17 00:00:00 2001 From: Antonioya Date: Wed, 12 Sep 2018 10:16:52 +0200 Subject: GP: Change UI panel parameter smooth order --- release/scripts/startup/bl_ui/space_view3d_toolbar.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'release/scripts/startup/bl_ui/space_view3d_toolbar.py') diff --git a/release/scripts/startup/bl_ui/space_view3d_toolbar.py b/release/scripts/startup/bl_ui/space_view3d_toolbar.py index 05cd847b06e..41dc143e680 100644 --- a/release/scripts/startup/bl_ui/space_view3d_toolbar.py +++ b/release/scripts/startup/bl_ui/space_view3d_toolbar.py @@ -1548,11 +1548,11 @@ class VIEW3D_PT_tools_grease_pencil_brush_settings(View3DPanel, Panel): col = layout.column(align=True) col.prop(gp_settings, "pen_smooth_factor") - col.prop(gp_settings, "pen_thick_smooth_factor") + col.prop(gp_settings, "pen_smooth_steps") col = layout.column(align=True) - col.prop(gp_settings, "pen_smooth_steps") - col.prop(gp_settings, "pen_thick_smooth_steps") + col.prop(gp_settings, "pen_thick_smooth_factor") + col.prop(gp_settings, "pen_thick_smooth_steps", text="Iterations") col = layout.column(align=True) col.prop(gp_settings, "pen_subdivision_steps") -- cgit v1.2.3