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:
authorAntony Riakiotakis <kalast@gmail.com>2014-03-27 02:04:40 +0400
committerAntony Riakiotakis <kalast@gmail.com>2014-03-27 02:04:59 +0400
commit0adc1ba209c24a2200c2e42f75e735da0a5f9c2d (patch)
tree0135e85428acb0d680463f8f3ad29b69db6aacb1 /release
parent10e754458614638cfde0cdd0e7f9858d24a4079d (diff)
Attempt to fix T39412
do not use different stroke property names for different paint systems. This was done due to different stroke sets being supported for each system, but this lead to trouble if we changed the names (due to different stroke sets being supported) and users created custom keymaps with the old property name saved. The first part of this fix addresses master. A similar commit will be done to soc-2013-paint.
Diffstat (limited to 'release')
-rw-r--r--release/scripts/startup/bl_ui/space_view3d_toolbar.py5
1 files changed, 1 insertions, 4 deletions
diff --git a/release/scripts/startup/bl_ui/space_view3d_toolbar.py b/release/scripts/startup/bl_ui/space_view3d_toolbar.py
index f180e30f9dc..3f8432204b5 100644
--- a/release/scripts/startup/bl_ui/space_view3d_toolbar.py
+++ b/release/scripts/startup/bl_ui/space_view3d_toolbar.py
@@ -1119,10 +1119,7 @@ class VIEW3D_PT_tools_brush_stroke(Panel, View3DPaintPanel):
col.label(text="Stroke Method:")
- if context.sculpt_object:
- col.prop(brush, "sculpt_stroke_method", text="")
- else:
- col.prop(brush, "stroke_method", text="")
+ col.prop(brush, "stroke_method", text="")
if brush.use_anchor:
col.separator()