Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAntonioya <blendergit@gmail.com>2018-09-12 11:16:52 +0300
committerAntonioya <blendergit@gmail.com>2018-09-12 11:17:18 +0300
commitcf376bc451e56d03b4176e519793b2eccd75d0d6 (patch)
treea55e08a9960ef021bc2af726bad3854e9ec18d71 /release/scripts/startup/bl_ui/space_view3d_toolbar.py
parent759ad6aa77dc2b3ba2321b684e42fe9954593bbf (diff)
GP: Change UI panel parameter smooth order
Diffstat (limited to 'release/scripts/startup/bl_ui/space_view3d_toolbar.py')
-rw-r--r--release/scripts/startup/bl_ui/space_view3d_toolbar.py6
1 files changed, 3 insertions, 3 deletions
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")