Enumerate copy so list can be mutated w\o throwing (#2828)

- fixes #2576
This commit is contained in:
kingces95 2018-06-05 11:43:33 -10:00 коммит произвёл Stephane Delcroix
Родитель 6be203ab2e
Коммит ec964de0ca
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -15,7 +15,7 @@ namespace Xamarin.Forms.Internals
if (predicate == null)
predicate = x => true;
foreach (IGestureRecognizer item in gestures)
foreach (IGestureRecognizer item in new List<IGestureRecognizer>(gestures))
{
var gesture = item as T;
if (gesture != null && predicate(gesture))