update RecentVaultsListItem_DoubleTapped in MainWindow.axaml.cs

This commit is contained in:
InspectorIT
2026-03-27 23:08:39 +03:00
parent f2a5c342f6
commit 128cbae431

View File

@@ -87,6 +87,7 @@ namespace KeyKeeper.Views
{ {
if (sender is Control c && c.DataContext is RecentFile recentFile) if (sender is Control c && c.DataContext is RecentFile recentFile)
{ {
recentFilesService.Remember(recentFile.Path);
OpenRepositoryWindow(new PassStoreFileAccessor(recentFile.Path, false, null)); OpenRepositoryWindow(new PassStoreFileAccessor(recentFile.Path, false, null));
} }
} }