[Bf-blender-cvs] [dd9dfadaac9] master: remove "Select Linked" from the particle select and context menu

Philipp Oeser noreply at git.blender.org
Wed Feb 12 19:39:38 CET 2020


Commit: dd9dfadaac9b17d0a5f41545925668717b662b08
Author: Philipp Oeser
Date:   Wed Feb 12 16:47:19 2020 +0100
Branches: master
https://developer.blender.org/rBdd9dfadaac9b17d0a5f41545925668717b662b08

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

===================================================================

M	release/scripts/startup/bl_ui/space_view3d.py

===================================================================

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"



More information about the Bf-blender-cvs mailing list