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:
Diffstat (limited to 'release/scripts/startup/bl_ui/properties_constraint.py')
-rw-r--r--release/scripts/startup/bl_ui/properties_constraint.py9
1 files changed, 6 insertions, 3 deletions
diff --git a/release/scripts/startup/bl_ui/properties_constraint.py b/release/scripts/startup/bl_ui/properties_constraint.py
index 5bb9c151c2c..4ad178bc064 100644
--- a/release/scripts/startup/bl_ui/properties_constraint.py
+++ b/release/scripts/startup/bl_ui/properties_constraint.py
@@ -726,9 +726,12 @@ class ConstraintButtonsPanel():
if con.shrinkwrap_type == 'PROJECT':
row = layout.row(align=True)
- row.prop(con, "use_x")
- row.prop(con, "use_y")
- row.prop(con, "use_z")
+ row.prop(con, "project_axis", expand=True)
+ split = layout.split(percentage=0.4)
+ split.label(text="Axis Space:")
+ rowsub = split.row()
+ rowsub.prop(con, "project_axis_space", text="")
+ layout.prop(con, "project_limit")
def DAMPED_TRACK(self, context, layout, con):
self.target_template(layout, con)