From 7b1aeea029b1052fa01b99f4e3f5a2e87eccd615 Mon Sep 17 00:00:00 2001 From: Jason Wilkins Date: Mon, 19 Jul 2010 07:26:41 +0000 Subject: [PATCH] * spelling error, "substract" --- release/scripts/ui/space_view3d_toolbar.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/release/scripts/ui/space_view3d_toolbar.py b/release/scripts/ui/space_view3d_toolbar.py index 515fa236fc0..fa1a4dec317 100644 --- a/release/scripts/ui/space_view3d_toolbar.py +++ b/release/scripts/ui/space_view3d_toolbar.py @@ -1111,10 +1111,10 @@ class VIEW3D_PT_tools_brush_appearance(PaintPanel): col = layout.column(); if context.sculpt_object and context.tool_settings.sculpt: - #if brush.sculpt_tool in ('DRAW', 'INFLATE', 'CLAY', 'CLAY_TUBES', 'PINCH', 'CREASE', 'BLOB', 'FLATTEN'): - if brush.sculpt_tool in ('DRAW', 'INFLATE', 'CLAY', 'PINCH', 'CREASE', 'BLOB', 'FLATTEN'): + #if brush.sculpt_tool in ('DRAW', 'INFLATE', 'CLAY', 'CLAY_TUBES', 'PINCH', 'CREASE', 'BLOB', 'FLATTEN', 'FILL', 'SCRAPE'): + if brush.sculpt_tool in ('DRAW', 'INFLATE', 'CLAY', 'PINCH', 'CREASE', 'BLOB', 'FLATTEN', 'FILL', 'SCRAPE'): col.prop(brush, "add_col", text="Add Color") - col.prop(brush, "sub_col", text="Substract Color") + col.prop(brush, "sub_col", text="Subtract Color") else: col.prop(brush, "add_col", text="Color")