Skip to content

Commit

Permalink
fix: Fix UIElementCollection.Enumerator doesn't enumerate
Browse files Browse the repository at this point in the history
Turns out an immutable IEnumerator doesn't work the way you'd like.
  • Loading branch information
davidjohnoliver committed Jul 14, 2020
1 parent 7418512 commit 013903f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Uno.UI/UI/Xaml/UIElementCollection.Xamarin.cs
Expand Up @@ -27,7 +27,7 @@ public partial class UIElementCollection : IList<UIElement>, IEnumerable<UIEleme

public struct Enumerator : IEnumerator<UIElement>, IEnumerator
{
private readonly List<_View>.Enumerator _inner;
private List<_View>.Enumerator _inner;

internal Enumerator(_BindableView owner)
{
Expand Down

0 comments on commit 013903f

Please sign in to comment.