UI: Fix Capitalization

Differential Revision: https://developer.blender.org/D5716
This commit is contained in:
Yevgeny Makarov
2019-09-20 14:31:24 +02:00
committed by Jacques Lucke
parent 60af4d207b
commit 7a83b64f7b
38 changed files with 104 additions and 104 deletions

View File

@@ -72,8 +72,8 @@ class MESH_MT_shape_key_context_menu(Menu):
layout.separator()
layout.operator("object.shape_key_remove", icon='X', text="Delete All Shape Keys").all = True
layout.separator()
layout.operator("object.shape_key_move", icon='TRIA_UP_BAR', text="Move To Top").type = 'TOP'
layout.operator("object.shape_key_move", icon='TRIA_DOWN_BAR', text="Move To Bottom").type = 'BOTTOM'
layout.operator("object.shape_key_move", icon='TRIA_UP_BAR', text="Move to Top").type = 'TOP'
layout.operator("object.shape_key_move", icon='TRIA_DOWN_BAR', text="Move to Bottom").type = 'BOTTOM'
class MESH_UL_vgroups(UIList):