Skip to content

Commit

Permalink
Change DefaultDropHandler.TestCompatibleTypes check from IEditableCol…
Browse files Browse the repository at this point in the history
…lectionView to ICollectionView
  • Loading branch information
dauthleikr authored and punker76 committed Dec 4, 2019
1 parent 0d4e0c6 commit 5367d20
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/GongSolutions.WPF.DragDrop/DefaultDropHandler.cs
Original file line number Diff line number Diff line change
Expand Up @@ -267,7 +267,7 @@ protected static bool TestCompatibleTypes(IEnumerable target, object data)
}
else
{
return target is IList || target is IEditableCollectionView;
return target is IList || target is ICollectionView;
}
}
}
Expand Down

0 comments on commit 5367d20

Please sign in to comment.