Skip to content

Commit

Permalink
🐛 Fix recursive finding of modals [Android] (#25)
Browse files Browse the repository at this point in the history
  • Loading branch information
SandroMachado authored and cooperka committed Apr 5, 2017
1 parent 2fd930b commit 8ca16cc
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ private ArrayList<View> recursiveLoopChildren(ViewGroup view, ArrayList<View> mo
final View child = view.getChildAt(i);

if (child instanceof ViewGroup) {
return recursiveLoopChildren((ViewGroup) child, modals);
recursiveLoopChildren((ViewGroup) child, modals);
}
}

Expand Down

0 comments on commit 8ca16cc

Please sign in to comment.