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:
authorCampbell Barton <ideasman42@gmail.com>2018-11-29 00:19:57 +0300
committerCampbell Barton <ideasman42@gmail.com>2018-11-29 00:19:57 +0300
commitce84d64546659bdef0f6b708803dee92a74493d8 (patch)
tree35e3f3b9bd19f50fdca93cbd799fa2f447bafcc6
parent7ced3da6ac25b95ad94541770f63905449ec37e8 (diff)
UI: rename Center Points -> Origins
See: T56648
-rw-r--r--release/scripts/startup/bl_ui/space_view3d.py4
1 files changed, 2 insertions, 2 deletions
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",
)