mirror of
https://github.com/bitwarden/mobile
synced 2025-02-01 19:17:13 +01:00
fix GetWindowNodes recusion
This commit is contained in:
parent
079fb34120
commit
2c73906ad3
@ -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…
x
Reference in New Issue
Block a user