[Bf-blender-cvs] [a1554703631] greasepencil-object: Fix typo error in Stroke Panel

Antonio Vazquez noreply at git.blender.org
Thu May 31 09:53:05 CEST 2018


Commit: a1554703631ce1f1c454a52075af2b8e04cfb71e
Author: Antonio Vazquez
Date:   Thu May 31 09:52:55 2018 +0200
Branches: greasepencil-object
https://developer.blender.org/rBa1554703631ce1f1c454a52075af2b8e04cfb71e

Fix typo error in Stroke Panel

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

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 c918eb1a55a..8297d365908 100644
--- a/release/scripts/startup/bl_ui/space_view3d_toolbar.py
+++ b/release/scripts/startup/bl_ui/space_view3d_toolbar.py
@@ -1419,8 +1419,8 @@ class VIEW3D_PT_tools_grease_pencil_brush_option(View3DPanel, Panel):
                 col.prop(gp_settings, "use_stabilizer", text="Stabilizer")
                 if gp_settings.use_stabilizer:
                     col.separator()
-                    col.prop(gp_settings, "smooth_stroke_radius", text="Distance")
-                    col.prop(gp_settings, "smooth_stroke_factor", slider=True)
+                    col.prop(brush, "smooth_stroke_radius", text="Radius", slider=True)
+                    col.prop(brush, "smooth_stroke_factor", text="Factor", slider=True)
                     col.separator()
 
             col.prop(gp_settings, "enable_random", text="Random Settings")



More information about the Bf-blender-cvs mailing list