[Bf-blender-cvs] [cf376bc451e] blender2.8: GP: Change UI panel parameter smooth order

Antonioya noreply at git.blender.org
Wed Sep 12 10:17:27 CEST 2018


Commit: cf376bc451e56d03b4176e519793b2eccd75d0d6
Author: Antonioya
Date:   Wed Sep 12 10:16:52 2018 +0200
Branches: blender2.8
https://developer.blender.org/rBcf376bc451e56d03b4176e519793b2eccd75d0d6

GP: Change UI panel parameter smooth order

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

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



More information about the Bf-blender-cvs mailing list