Changeset View
Changeset View
Standalone View
Standalone View
release/scripts/startup/bl_ui/properties_data_mesh.py
| # SPDX-License-Identifier: GPL-2.0-or-later | # SPDX-License-Identifier: GPL-2.0-or-later | ||||
| import bpy | import bpy | ||||
| from bpy.types import Menu, Panel, UIList | from bpy.types import Menu, Panel, UIList | ||||
| from rna_prop_ui import PropertyPanel | from rna_prop_ui import PropertyPanel | ||||
| from bpy.app.translations import ( | from bpy.app.translations import ( | ||||
| pgettext_tip as iface_, | pgettext_tip as iface_, | ||||
| pgettext_tip as tip_, | pgettext_tip as tip_, | ||||
| ) | ) | ||||
| class MESH_MT_vertex_group_context_menu(Menu): | class MESH_MT_vertex_group_context_menu(Menu): | ||||
| bl_label = "Vertex Group Specials" | bl_label = "Vertex Group Specials" | ||||
| def draw(self, _context): | def draw(self, _context): | ||||
| layout = self.layout | layout = self.layout | ||||
| layout.operator( | layout.operator( | ||||
| "object.vertex_group_sort", | "object.vertex_group_sort", | ||||
| ▲ Show 20 Lines • Show All 722 Lines • Show Last 20 Lines | |||||