Skip to content

Commit e8dd2e6

Browse files
committed
Update PropertyPropagationExtensions.cs
1 parent 6040642 commit e8dd2e6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Controls/src/Core/Internals/PropertyPropagationExtensions.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ internal static void PropagatePropertyChanged(string propertyName, Element eleme
2828
if (propertyName == null || propertyName == Shell.NavBarIsVisibleProperty.PropertyName)
2929
BaseShellItem.PropagateFromParent(Shell.NavBarIsVisibleProperty, element);
3030

31-
for (int i = 0; i < children.Count; i++)
31+
for (int i = 0; i < children.ToList().Count; i++)
3232
{
3333
if (children[i] is IPropertyPropagationController view)
3434
{

0 commit comments

Comments
 (0)