[Bf-blender-cvs] [2000c3ed7a4] modifier-panels-ui: "Axis" instead of "Use"

Hans Goudey noreply at git.blender.org
Mon Apr 27 23:38:24 CEST 2020


Commit: 2000c3ed7a4f581214f730de058789895e4568ab
Author: Hans Goudey
Date:   Mon Apr 27 10:57:27 2020 -0500
Branches: modifier-panels-ui
https://developer.blender.org/rB2000c3ed7a4f581214f730de058789895e4568ab

"Axis" instead of "Use"

===================================================================

M	release/scripts/startup/bl_ui/properties_constraint.py

===================================================================

diff --git a/release/scripts/startup/bl_ui/properties_constraint.py b/release/scripts/startup/bl_ui/properties_constraint.py
index ebc41645b11..ff1378fc67e 100644
--- a/release/scripts/startup/bl_ui/properties_constraint.py
+++ b/release/scripts/startup/bl_ui/properties_constraint.py
@@ -499,7 +499,7 @@ class OBJECT_PT_bRotateLikeConstraint(ConstraintButtonsPanel):
 
         layout.prop(con, "euler_order", text="Order")
 
-        row = layout.row(heading="Use")
+        row = layout.row(heading="Axis")
         row.prop(con, "use_x", text="X", toggle=True)
         row.prop(con, "use_y", text="Y", toggle=True)
         row.prop(con, "use_z", text="Z", toggle=True)
@@ -526,7 +526,7 @@ class OBJECT_PT_bLocateLikeConstraint(ConstraintButtonsPanel):
 
         self.target_template(layout, con)
 
-        row = layout.row(heading="Use")
+        row = layout.row(heading="Axis")
         row.prop(con, "use_x", text="X", toggle=True)
         row.prop(con, "use_y", text="Y", toggle=True)
         row.prop(con, "use_z", text="Z", toggle=True)
@@ -553,7 +553,7 @@ class OBJECT_PT_bSizeLikeConstraint(ConstraintButtonsPanel):
 
         self.target_template(layout, con)
 
-        row = layout.row(heading="Use")
+        row = layout.row(heading="Axis")
         row.prop(con, "use_x", text="X", toggle=True)
         row.prop(con, "use_y", text="Y", toggle=True)
         row.prop(con, "use_z", text="Z", toggle=True)



More information about the Bf-blender-cvs mailing list