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>2011-02-27 13:47:32 +0300
committerThomas Dinges <blender@dingto.org>2011-02-27 13:47:32 +0300
commit77959fe893a9e0588a23ee4b75b6e7ec4d6b4323 (patch)
tree09ee601c14eb6dee8f27d0896377d1befb2b6c30 /release/scripts/ui
parentbc52b996e3fe509760aac9075d239ad56dbdf623 (diff)
2.5 Constraint Ui File:
* Minor fix for my commit yesterday, label in FLOOR constraint was missing for location property.
Diffstat (limited to 'release/scripts/ui')
-rw-r--r--release/scripts/ui/properties_object_constraint.py7
1 files changed, 3 insertions, 4 deletions
diff --git a/release/scripts/ui/properties_object_constraint.py b/release/scripts/ui/properties_object_constraint.py
index 1fa6b5b18a3..7490fc46ba7 100644
--- a/release/scripts/ui/properties_object_constraint.py
+++ b/release/scripts/ui/properties_object_constraint.py
@@ -502,8 +502,8 @@ class ConstraintButtonsPanel():
layout.prop(con, "offset")
row = layout.row()
- #row.label(text="Min/Max:")
- row.prop(con, "floor_location", expand=True, text="Min/Max:")
+ row.label(text="Min/Max:")
+ row.prop(con, "floor_location", expand=True)
self.space_template(layout, con)
@@ -623,8 +623,7 @@ class ConstraintButtonsPanel():
row.label(text="Main Axis:")
row.prop(con, "main_axis", expand=True)
- row = layout.row()
- row.prop(con, "use_cyclic")
+ layout.prop(con, "use_cyclic")
def TRANSFORM(self, context, layout, con):
self.target_template(layout, con)