Skip to content

Commit 41c891b

Browse files
committed
Update ItemsSourceFactory2.cs
1 parent 4f0b3a4 commit 41c891b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Controls/src/Core/Handlers/Items2/iOS/ItemsSourceFactory2.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ public static ILoopItemsViewSource CreateForCarouselView(IEnumerable itemsSource
2222
IList _ when itemsSource is INotifyCollectionChanged => new LoopObservableItemsSource2(itemsSource as IList, collectionViewController, loop),
2323
IEnumerable _ when itemsSource is INotifyCollectionChanged => new LoopObservableItemsSource2(itemsSource as IEnumerable, collectionViewController, loop),
2424
IEnumerable<object> generic => new LoopListSource2(generic, loop),
25-
_ => new LoopListSource(itemsSource, loop),
25+
_ => new LoopListSource2(itemsSource, loop),
2626
};
2727
}
2828

0 commit comments

Comments
 (0)