[Bf-blender-cvs] [23383910ec8] blender2.8: Missed when renaming tool settings

Campbell Barton noreply at git.blender.org
Tue Dec 18 06:43:32 CET 2018


Commit: 23383910ec8d0e704025f68db4c79f2aa0470614
Author: Campbell Barton
Date:   Tue Dec 18 16:40:48 2018 +1100
Branches: blender2.8
https://developer.blender.org/rB23383910ec8d0e704025f68db4c79f2aa0470614

Missed when renaming tool settings

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

M	release/scripts/startup/bl_ui/properties_grease_pencil_common.py

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

diff --git a/release/scripts/startup/bl_ui/properties_grease_pencil_common.py b/release/scripts/startup/bl_ui/properties_grease_pencil_common.py
index 8ba0ac6303c..9ba2c0645d1 100644
--- a/release/scripts/startup/bl_ui/properties_grease_pencil_common.py
+++ b/release/scripts/startup/bl_ui/properties_grease_pencil_common.py
@@ -40,8 +40,8 @@ def gpencil_stroke_placement_settings(context, layout):
     if context.space_data.type != 'VIEW_3D':
         col.label(text="Stroke Placement:")
         row = col.row(align=True)
-        row.prop_enum(ts, propname, 'VIEW')
-        row.prop_enum(ts, propname, 'CURSOR', text="Cursor")
+        row.prop_enum(tool_settings, propname, 'VIEW')
+        row.prop_enum(tool_settings, propname, 'CURSOR', text="Cursor")
 
 
 def gpencil_active_brush_settings_simple(context, layout):



More information about the Bf-blender-cvs mailing list