Skip to content

Commit ce2b9a2

Browse files
authored
Fixed MultiSelect DoubleTap (#4438)
1 parent 6f7f602 commit ce2b9a2

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

Files/Views/LayoutModes/GridViewBrowser.xaml.cs

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -476,7 +476,10 @@ private void FileList_DoubleTapped(object sender, DoubleTappedRoutedEventArgs e)
476476
// Skip opening selected items if the double tap doesn't capture an item
477477
if ((e.OriginalSource as FrameworkElement)?.DataContext is ListedItem && !AppSettings.OpenItemsWithOneclick)
478478
{
479-
NavigationHelpers.OpenSelectedItems(ParentShellPageInstance, false);
479+
if (!InteractionViewModel.MultiselectEnabled)
480+
{
481+
NavigationHelpers.OpenSelectedItems(ParentShellPageInstance, false);
482+
}
480483
}
481484
}
482485

0 commit comments

Comments
 (0)