Rework/New: Object & Mesh Select Pies #21

Merged
Demeter Dzadik merged 10 commits from selection_pies into main 2024-09-08 13:06:57 +02:00
Showing only changes of commit dba25d55a7 - Show all commits

View File

@ -57,6 +57,7 @@ class PIE_MT_object_selection_more(Menu):
layout.operator_menu_enum("object.select_by_type", "type", text="Select All by Type", icon='OUTLINER_OB_MESH')
layout.operator("object.select_random", text="Select Random", icon='RNDCURVE')
layout.operator("object.select_pattern", text="Select Pattern...", icon='FILTER')
layout.operator('object.select_by_name_search', icon='VIEWZOOM')
layout.separator()
layout.operator("object.select_camera", text="Select Active Camera", icon='OUTLINER_OB_CAMERA')
@ -317,7 +318,7 @@ class OBJECT_OT_select_object_by_name_search(Operator, ObjectSelectOperatorMixin
"""Select an object via a search box"""
bl_idname = "object.select_by_name_search"
bl_label = "Search Object"
bl_label = "Search Object..."
bl_options = {'REGISTER', 'UNDO'}
obj_name: StringProperty(name="Object")