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 <billrey@me.com>2019-03-12 01:33:13 +0300
committerWilliam Reynish <billrey@me.com>2019-03-12 01:33:13 +0300
commitcb14138b5a35970dde7c3c630df147d3d07bcf33 (patch)
tree78925f8b1ac80a5a3b5f7bbc0461b8934ff191e2
parent0f20696846b0b84abaf7cc8e024c67674f453cd8 (diff)
UI: Remove incorrect usage of ellipses in menus
We only use ellipses when a popup appears, not for regular submenus.
-rw-r--r--release/scripts/startup/bl_ui/space_view3d.py14
1 files changed, 7 insertions, 7 deletions
diff --git a/release/scripts/startup/bl_ui/space_view3d.py b/release/scripts/startup/bl_ui/space_view3d.py
index b006599d668..e733d2a9c4d 100644
--- a/release/scripts/startup/bl_ui/space_view3d.py
+++ b/release/scripts/startup/bl_ui/space_view3d.py
@@ -1645,7 +1645,7 @@ class VIEW3D_MT_object(Menu):
layout = self.layout
layout.menu("VIEW3D_MT_transform_object")
- layout.operator_menu_enum("object.origin_set", text="Set Origin...", property="type")
+ layout.operator_menu_enum("object.origin_set", text="Set Origin", property="type")
layout.menu("VIEW3D_MT_mirror")
layout.menu("VIEW3D_MT_object_clear")
layout.menu("VIEW3D_MT_object_apply")
@@ -1669,7 +1669,7 @@ class VIEW3D_MT_object(Menu):
layout.menu("VIEW3D_MT_object_relations")
layout.menu("VIEW3D_MT_object_constraints")
layout.menu("VIEW3D_MT_object_track")
- layout.menu("VIEW3D_MT_make_links", text="Make Links...")
+ layout.menu("VIEW3D_MT_make_links", text="Make Links")
layout.separator()
@@ -1796,7 +1796,7 @@ class VIEW3D_MT_object_specials(Menu):
pass
elif obj.type == 'MESH':
layout.operator_context = 'INVOKE_REGION_WIN'
- layout.operator_menu_enum("object.origin_set", text="Set Origin...", property="type")
+ layout.operator_menu_enum("object.origin_set", text="Set Origin", property="type")
layout.operator_context = 'INVOKE_DEFAULT'
# If more than one object is selected
@@ -1850,14 +1850,14 @@ class VIEW3D_MT_object_specials(Menu):
layout.operator("object.convert", text="Convert to Mesh").target = 'MESH'
- layout.operator_menu_enum("object.origin_set", text="Set Origin...", property="type")
+ layout.operator_menu_enum("object.origin_set", text="Set Origin", property="type")
elif obj.type == 'GPENCIL':
layout.operator("gpencil.convert", text="Convert to Path").type = 'PATH'
layout.operator("gpencil.convert", text="Convert to Bezier Curves").type = 'CURVE'
layout.operator("gpencil.convert", text="Convert to Mesh").type = 'POLY'
- layout.operator_menu_enum("object.origin_set", text="Set Origin...", property="type")
+ layout.operator_menu_enum("object.origin_set", text="Set Origin", property="type")
elif obj.type == 'EMPTY':
layout.operator_context = 'INVOKE_REGION_WIN'
@@ -2931,7 +2931,7 @@ class VIEW3D_MT_edit_mesh_specials(Menu):
col.separator()
- col.menu("VIEW3D_MT_snap", text="Snap Vertices...")
+ col.menu("VIEW3D_MT_snap", text="Snap Vertices")
col.operator("transform.mirror", text="Mirror Vertices")
col.separator()
@@ -3032,7 +3032,7 @@ class VIEW3D_MT_edit_mesh_specials(Menu):
col.separator()
# Modify Operators
- col.menu("VIEW3D_MT_uv_map", text="UV Unwrap Faces...")
+ col.menu("VIEW3D_MT_uv_map", text="UV Unwrap Faces")
col.separator()