Fix T40756 Select Linked by Particle System matches ignores selected

psys.

This is inconsistent with other comparable cases like materials, where
the active slot is used to define matching objects.
This commit is contained in:
2014-06-23 08:20:35 +02:00
parent 77f357728f
commit 95d6c01478

View File

@@ -315,22 +315,20 @@ static bool object_select_all_by_dup_group(bContext *C, Object *ob)
static bool object_select_all_by_particle(bContext *C, Object *ob)
{
ParticleSystem *psys_act = psys_get_current(ob);
bool changed = false;
CTX_DATA_BEGIN (C, Base *, base, visible_bases)
{
if ((base->flag & SELECT) == 0) {
/* loop through other, then actives particles*/
/* loop through other particles*/
ParticleSystem *psys;
ParticleSystem *psys_act;
for (psys = base->object->particlesystem.first; psys; psys = psys->next) {
for (psys_act = ob->particlesystem.first; psys_act; psys_act = psys_act->next) {
if (psys->part == psys_act->part) {
base->flag |= SELECT;
changed = true;
break;
}
if (psys->part == psys_act->part) {
base->flag |= SELECT;
changed = true;
break;
}
if (base->flag & SELECT) {