We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 594452d commit 3fdb0ddCopy full SHA for 3fdb0dd
Files/Helpers/ContextFlyoutItemHelper.cs
@@ -44,7 +44,7 @@ public static List<ContextMenuFlyoutItemViewModel> GetBaseContextCommands(NamedP
44
public static List<ContextMenuFlyoutItemViewModel> Filter(List<ContextMenuFlyoutItemViewModel> items, List<ListedItem> selectedItems, bool shiftPressed, CurrentInstanceViewModel currentInstanceViewModel)
45
{
46
items = items.Where(x => Check(item: x, currentInstanceViewModel: currentInstanceViewModel, selectedItems: selectedItems, shiftPressed: shiftPressed)).ToList();
47
- items.ForEach(x => x.Items = x.Items.Where(y => Check(item: x, currentInstanceViewModel: currentInstanceViewModel, selectedItems: selectedItems, shiftPressed: shiftPressed)).ToList());
+ items.ForEach(x => x.Items = x.Items.Where(y => Check(item: y, currentInstanceViewModel: currentInstanceViewModel, selectedItems: selectedItems, shiftPressed: shiftPressed)).ToList());
48
var overflow = items.Where(x => x.ID == "ItemOverflow").FirstOrDefault();
49
if(overflow != null && !shiftPressed)
50
0 commit comments