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:
authorWilliam Reynish <william@reynish.com>2009-11-30 17:40:45 +0300
committerWilliam Reynish <william@reynish.com>2009-11-30 17:40:45 +0300
commite7beae56704c2e25923337354934e193fef42120 (patch)
tree5d55ebe91cd6c80ef96a0ef2cdba9efee3d3ee3d /release/scripts
parentb911d83091f607f56f34b0f4e72655f2b6ebbc6b (diff)
Rename Centroid to Origin, following discussions on mailing list.
Diffstat (limited to 'release/scripts')
-rw-r--r--release/scripts/ui/space_userpref.py2
-rw-r--r--release/scripts/ui/space_view3d.py10
2 files changed, 6 insertions, 6 deletions
diff --git a/release/scripts/ui/space_userpref.py b/release/scripts/ui/space_userpref.py
index 32a9f0d2534..ec459146e5c 100644
--- a/release/scripts/ui/space_userpref.py
+++ b/release/scripts/ui/space_userpref.py
@@ -88,7 +88,7 @@ class USERPREF_PT_interface(bpy.types.Panel):
sub1.prop(view, "show_playback_fps", text="Playback FPS")
sub1.prop(view, "global_scene")
sub1.prop(view, "pin_floating_panels")
- sub1.prop(view, "object_center_size")
+ sub1.prop(view, "object_origin_size")
sub1.separator()
sub1.separator()
sub1.separator()
diff --git a/release/scripts/ui/space_view3d.py b/release/scripts/ui/space_view3d.py
index 58954601337..c100cde5a20 100644
--- a/release/scripts/ui/space_view3d.py
+++ b/release/scripts/ui/space_view3d.py
@@ -146,9 +146,9 @@ class VIEW3D_MT_transform(bpy.types.Menu):
layout.operator_context = 'EXEC_AREA'
- layout.operator("object.center_set", text="ObData to Centroid").type = 'CENTER'
- layout.operator("object.center_set", text="Centroid to ObData").type = 'CENTER_NEW'
- layout.operator("object.center_set", text="Centroid to 3D Cursor").type = 'CENTER_CURSOR'
+ layout.operator("object.center_set", text="Object Data to Origin").type = 'CENTER'
+ layout.operator("object.center_set", text="Origin to Object Data").type = 'CENTER_NEW'
+ layout.operator("object.center_set", text="Origin to 3D Cursor").type = 'CENTER_CURSOR'
class VIEW3D_MT_mirror(bpy.types.Menu):
@@ -195,7 +195,7 @@ class VIEW3D_MT_snap(bpy.types.Menu):
layout.operator("view3d.snap_selected_to_grid", text="Selection to Grid")
layout.operator("view3d.snap_selected_to_cursor", text="Selection to Cursor")
- layout.operator("view3d.snap_selected_to_center", text="Selection to Center")
+ layout.operator("view3d.snap_selected_to_center", text="Selection to Origin")
layout.separator()
@@ -1621,7 +1621,7 @@ class VIEW3D_PT_3dview_display(bpy.types.Panel):
col.prop(view, "display_y_axis", text="Y Axis")
col.prop(view, "display_z_axis", text="Z Axis")
col.prop(view, "outline_selected")
- col.prop(view, "all_object_centers")
+ col.prop(view, "all_object_origins")
col.prop(view, "relationship_lines")
if ob and ob.type == 'MESH':
mesh = ob.data