Changeset View
Changeset View
Standalone View
Standalone View
space_view3d_display_tools/select_tools.py
| Context not available. | |||||
| class SelectAll(Operator): | class SelectAll(Operator): | ||||
| bl_idname = "opr.select_all" | bl_idname = "opr.select_all" | ||||
| bl_label = "(De)select All" | bl_label = "(De)select All" | ||||
| bl_description = "(De)select all objects, verticies, edges or faces" | bl_description = "(De)select all objects, vertices, edges or faces" | ||||
| bl_options = {'REGISTER', 'UNDO'} | bl_options = {'REGISTER', 'UNDO'} | ||||
| def execute(self, context): | def execute(self, context): | ||||
| Context not available. | |||||