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:
authorThomas Dinges <blender@dingto.org>2012-04-02 11:54:12 +0400
committerThomas Dinges <blender@dingto.org>2012-04-02 11:54:12 +0400
commitaa7cc852cd246805342abd1b5b00a30124ca7f09 (patch)
tree7b986a7fddd38094252e5a13e7ec087ecdabf3d1 /release
parent66e8efd40cfb7185d1eea9ea7b6bc9320ceecbee (diff)
Constraint UI:
* Adjust "no py constraint" message to be a bit more meaningful.
Diffstat (limited to 'release')
-rw-r--r--release/scripts/startup/bl_ui/properties_object_constraint.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/release/scripts/startup/bl_ui/properties_object_constraint.py b/release/scripts/startup/bl_ui/properties_object_constraint.py
index c1b49d087ca..ce6c7ad4e92 100644
--- a/release/scripts/startup/bl_ui/properties_object_constraint.py
+++ b/release/scripts/startup/bl_ui/properties_object_constraint.py
@@ -816,7 +816,7 @@ class ConstraintButtonsPanel():
layout.operator("clip.constraint_to_fcurve")
def SCRIPT(self, context, layout, con):
- layout.label("Blender 2.5 has no py-constraints")
+ layout.label("Blender 2.6 doesn't support python constraints yet.")
class OBJECT_PT_constraints(ConstraintButtonsPanel, Panel):