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:
authorMiika Hamalainen <blender@miikah.org>2011-08-21 23:03:47 +0400
committerMiika Hamalainen <blender@miikah.org>2011-08-21 23:03:47 +0400
commit5b7133448439a510e779209c35aebd4cf38ff637 (patch)
treedbaabcaaa82a1c9ba008ff8ec1a40c0ec5c2013f /release/scripts
parent404dd15a123bc00281f4be8d1dfc1606723947b6 (diff)
Dynamic Paint:
* Bake calculation memory is now freed if surface is deactivated or baked. * Fixed possibly incorrect brush influence when using "Non-Closed" brush setting. * Added new rna property descriptions. * Added some comments and general code cleanup.
Diffstat (limited to 'release/scripts')
-rw-r--r--release/scripts/startup/bl_ui/properties_physics_dynamicpaint.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/release/scripts/startup/bl_ui/properties_physics_dynamicpaint.py b/release/scripts/startup/bl_ui/properties_physics_dynamicpaint.py
index 1560019e2ac..25de00f64ea 100644
--- a/release/scripts/startup/bl_ui/properties_physics_dynamicpaint.py
+++ b/release/scripts/startup/bl_ui/properties_physics_dynamicpaint.py
@@ -400,7 +400,7 @@ class PHYSICS_PT_dp_advanced_brush(PhysicButtonsPanel, bpy.types.Panel):
if (brush.paint_source != 'POINT'):
sub.prop(brush, "prox_facealigned")
sub = split.column()
- sub.prop(brush, "prox_falloff", text="Falloff")
+ sub.prop(brush, "prox_falloff")
if brush.paint_source == "VOLDIST":
col = layout.row().column()
col.prop(brush, "prox_inverse")