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:
authorMartin Poirier <theeth@yahoo.com>2009-12-04 00:56:04 +0300
committerMartin Poirier <theeth@yahoo.com>2009-12-04 00:56:04 +0300
commit18b465b7498544dfbb98d39a7e6afa72e0bed8a8 (patch)
treec159a275fcac69350a9072c10ffc596eb22a0195 /release/scripts/ui
parent3b0e182f716b2541fc77fe3b4bac18a529143c29 (diff)
Finish renaming job in Set Center operator to use Origin instead of Center.
Also replace ObData by Geometry and Object Geometry after talk with Matt.
Diffstat (limited to 'release/scripts/ui')
-rw-r--r--release/scripts/ui/space_view3d.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/release/scripts/ui/space_view3d.py b/release/scripts/ui/space_view3d.py
index 3db6e3ccd99..cec836d664c 100644
--- a/release/scripts/ui/space_view3d.py
+++ b/release/scripts/ui/space_view3d.py
@@ -147,9 +147,9 @@ class VIEW3D_MT_transform(bpy.types.Menu):
layout.operator_context = 'EXEC_AREA'
- 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'
+ layout.operator("object.origin_set", text="Geometry to Origin").type = 'GEOMETRY_ORIGIN'
+ layout.operator("object.origin_set", text="Origin to Geometry").type = 'ORIGIN_GEOMETRY'
+ layout.operator("object.origin_set", text="Origin to 3D Cursor").type = 'ORIGIN_CURSOR'
class VIEW3D_MT_mirror(bpy.types.Menu):