Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPhilipp Oeser <info@graphics-engineer.com>2020-02-12 18:47:19 +0300
committerPhilipp Oeser <info@graphics-engineer.com>2020-02-12 21:36:01 +0300
commitdd9dfadaac9b17d0a5f41545925668717b662b08 (patch)
treef391696b9e27d59a3cf8d1d1ae63c62e85772193 /release
parent9aae62a59b2e8cfbf476a33e99ac1966b96e2bc9 (diff)
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
Diffstat (limited to 'release')
-rw-r--r--release/scripts/startup/bl_ui/space_view3d.py8
1 files changed, 0 insertions, 8 deletions
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"