[Bf-blender-cvs] [ce84d645466] blender2.8: UI: rename Center Points -> Origins

Campbell Barton noreply at git.blender.org
Wed Nov 28 22:24:07 CET 2018


Commit: ce84d64546659bdef0f6b708803dee92a74493d8
Author: Campbell Barton
Date:   Thu Nov 29 08:19:57 2018 +1100
Branches: blender2.8
https://developer.blender.org/rBce84d64546659bdef0f6b708803dee92a74493d8

UI: rename Center Points -> Origins

See: T56648

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

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

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

diff --git a/release/scripts/startup/bl_ui/space_view3d.py b/release/scripts/startup/bl_ui/space_view3d.py
index 5321c7d655e..6e47c4c8a83 100644
--- a/release/scripts/startup/bl_ui/space_view3d.py
+++ b/release/scripts/startup/bl_ui/space_view3d.py
@@ -3903,7 +3903,7 @@ class VIEW3D_MT_pivot_pie(Menu):
         pie.prop_enum(context.scene.tool_settings, "transform_pivot_point", value='MEDIAN_POINT')
         pie.prop_enum(context.scene.tool_settings, "transform_pivot_point", value='ACTIVE_ELEMENT')
         if (obj is None) or (mode in {'OBJECT', 'POSE', 'WEIGHT_PAINT'}):
-            pie.prop(context.scene.tool_settings, "use_transform_pivot_point_align", text="Center Points Only")
+            pie.prop(context.scene.tool_settings, "use_transform_pivot_point_align", text="Only Origins")
 
 
 class VIEW3D_MT_orientations_pie(Menu):
@@ -4972,7 +4972,7 @@ class VIEW3D_PT_pivot_point(Panel):
             col.prop(
                 toolsettings,
                 "use_transform_pivot_point_align",
-                text="Center Points Only",
+                text="Only Origins",
             )



More information about the Bf-blender-cvs mailing list