Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender-addons.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPablo Vazquez <venomgfx@gmail.com>2018-11-01 18:14:40 +0300
committerPablo Vazquez <venomgfx@gmail.com>2018-11-01 18:14:40 +0300
commit0119f2c49483e1a69ae500d0f553c1cff4a064d9 (patch)
tree4db7ea85187cffb0c057d3ef6bbbeb1541af1f3b /space_view3d_3d_navigation.py
parent87b985c47f2488f959ec6b97379419016db9a4f5 (diff)
UI: Rename "Cursor to Center" to "Cursor to World Origin"
Just labels as well, this time for add-ons.
Diffstat (limited to 'space_view3d_3d_navigation.py')
-rw-r--r--space_view3d_3d_navigation.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/space_view3d_3d_navigation.py b/space_view3d_3d_navigation.py
index adf0c8d8..8ed4bf00 100644
--- a/space_view3d_3d_navigation.py
+++ b/space_view3d_3d_navigation.py
@@ -254,7 +254,7 @@ class VIEW3D_PT_3dnavigationPanel(Panel):
col = layout.column(align=True)
col.label(text="Cursor:", icon='PIVOT_CURSOR')
row = col.row(align=True)
- row.operator("view3d.snap_cursor_to_center", text="Center")
+ row.operator("view3d.snap_cursor_to_center", text="World Origin")
row.operator("view3d.view_center_cursor", text="View")
col.operator("view3d.snap_cursor_to_selected", text="Cursor to Selected")