fix bsg bug that loses context on search, fixing multiselect drawing when mouse starts over unsearched item that becomes searched

This commit is contained in:
Tyfon
2024-07-13 15:54:28 -07:00
parent 1170037614
commit 0277490e8a
4 changed files with 91 additions and 10 deletions

View File

@@ -196,12 +196,12 @@ public class MultiSelect
SecondaryItems.Clear();
}
public static IEnumerable<DragItemContext> ItemContexts
public static IEnumerable<MultiSelectItemContext> ItemContexts
{
get { return SelectedItems.Keys; }
}
public static IEnumerable<DragItemContext> SecondaryContexts
public static IEnumerable<MultiSelectItemContext> SecondaryContexts
{
get { return SecondaryItems.Keys; }
}