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:
authorJoshua Leung <aligorith@gmail.com>2009-11-26 13:19:09 +0300
committerJoshua Leung <aligorith@gmail.com>2009-11-26 13:19:09 +0300
commitbaac1f2267631598613a6f189f45f4a5fea21b9e (patch)
tree36b9fa2c8bcdfc4e0015ff5d21d74a4c54a92805 /release/scripts/ui
parent9712e3a670659874ef303f45f03b7df6e1d8d649 (diff)
Bugfix #20069: Centre to cursor or centre to mouse, centre object.
- Was missing notifier after editing - Menu entries go bad naming after the UI api renaming
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 4a7f78d4840..da80a95150e 100644
--- a/release/scripts/ui/space_view3d.py
+++ b/release/scripts/ui/space_view3d.py
@@ -102,9 +102,9 @@ class VIEW3D_MT_transform(bpy.types.Menu):
layout.operator_context = 'EXEC_AREA'
- layout.operator("object.center_set").type = 'CENTER'
- layout.operator("object.center_set").type = 'CENTER_NEW'
- layout.operator("object.center_set").type = 'CENTER_CURSOR'
+ layout.operator("object.center_set", text="ObData to Center").type = 'CENTER'
+ layout.operator("object.center_set", text="Center New").type = 'CENTER_NEW'
+ layout.operator("object.center_set", text="Center Cursor").type = 'CENTER_CURSOR'
class VIEW3D_MT_mirror(bpy.types.Menu):
bl_label = "Mirror"