vain0x / DotNetKit.Wpf.AutoCompleteComboBox

ComboBox with filtering (auto-complete) for WPF
MIT License
71 stars 26 forks source link

Fix filter regression #12

Closed kvpt closed 4 years ago

kvpt commented 4 years ago

My PR #10 introduce a regression. I doesn't used the right handler to track ItemSource changes so the default items filter is initialized with the wrong value when no CollectionView are present. I modified the code to use the right handler and correctly detect when a CollectionView is used and apply the filter only in this case.

Fix #11

vain0x commented 4 years ago

Thank you!