Skip to content

Commit 025692a

Browse files
Fix: Fixed issue where folders with dots in their name couldn't be opened if compressed (#11990)
1 parent 9f2c050 commit 025692a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/Files.App/Views/LayoutModes/DetailsLayoutBrowser.xaml.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -447,11 +447,11 @@ private void FileList_DoubleTapped(object sender, DoubleTappedRoutedEventArgs e)
447447
if ((e.OriginalSource as FrameworkElement)?.DataContext is ListedItem item
448448
&& !UserSettingsService.FoldersSettingsService.OpenItemsWithOneClick)
449449
{
450-
_ = NavigationHelpers.OpenPath(item.ItemPath, ParentShellPageInstance);
450+
_ = NavigationHelpers.OpenSelectedItems(ParentShellPageInstance, false);
451451
}
452452
else if (UserSettingsService.FoldersSettingsService.DoubleClickToGoUp)
453453
{
454-
ParentShellPageInstance.Up_Click();
454+
ParentShellPageInstance?.Up_Click();
455455
}
456456
ResetRenameDoubleClick();
457457
}

0 commit comments

Comments
 (0)