[Bug #1245] Fix issue when moving task to an un-direct descendant
FEA: ItEr75S04BugFixing
This commit is contained in:
parent
0c98cad7aa
commit
24fae5503d
1 changed files with 3 additions and 1 deletions
|
|
@ -290,7 +290,9 @@ public abstract class EntitiesTree<T extends ITreeNode<T>> {
|
|||
return true;
|
||||
}
|
||||
for (T each : children) {
|
||||
return find(child, getChildren(each));
|
||||
if (find(child, getChildren(each))) {
|
||||
return true;
|
||||
}
|
||||
}
|
||||
return false;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue