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