From dd9dfadaac9b17d0a5f41545925668717b662b08 Mon Sep 17 00:00:00 2001 From: Philipp Oeser Date: Wed, 12 Feb 2020 16:47:19 +0100 Subject: remove "Select Linked" from the particle select and context menu The operator in its current state is based on mouse position and doesnt make sense to be called from a menu. (In fact it should be called 'select_linked_pick' internally and a separate 'select_linked' should be implemented similar to how "Select Linked" works for meshes, curves etc -- see D6823 for this) Differential Revision: https://developer.blender.org/D6822 --- release/scripts/startup/bl_ui/space_view3d.py | 8 -------- 1 file changed, 8 deletions(-) (limited to 'release') diff --git a/release/scripts/startup/bl_ui/space_view3d.py b/release/scripts/startup/bl_ui/space_view3d.py index de5e6624085..349ed2d5621 100644 --- a/release/scripts/startup/bl_ui/space_view3d.py +++ b/release/scripts/startup/bl_ui/space_view3d.py @@ -1443,10 +1443,6 @@ class VIEW3D_MT_select_particle(Menu): layout.separator() - layout.operator("particle.select_linked") - - layout.separator() - layout.operator("particle.select_more") layout.operator("particle.select_less") @@ -3124,10 +3120,6 @@ class VIEW3D_MT_particle_context_menu(Menu): layout.operator("particle.select_more") layout.operator("particle.select_less") - layout.separator() - - layout.operator("particle.select_linked") - class VIEW3D_MT_particle_showhide(ShowHideMenu, Menu): _operator_name = "particle" -- cgit v1.2.3