mirror of
https://github.com/bitwarden/android.git
synced 2025-03-07 23:16:00 +03:00
fix GetWindowNodes recusion
This commit is contained in:
parent
079fb34120
commit
2c73906ad3
1 changed files with 2 additions and 2 deletions
|
@ -253,9 +253,9 @@ namespace Bit.Android
|
|||
nodes.Add(n);
|
||||
}
|
||||
|
||||
for(int i = 0; i < n.ChildCount; i++)
|
||||
for(var i = 0; i < n.ChildCount; i++)
|
||||
{
|
||||
nodes.AddRange(GetWindowNodes(n.GetChild(i), e, condition, nodes));
|
||||
GetWindowNodes(n.GetChild(i), e, condition, nodes);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue