Skip to content

Commit 3bf92b7

Browse files
committed
Add support for multi-file and folder opening
Selecting multiple files and folders, then pressing enter now opens them in the following manner: - Single selection - Open file in respective application (existing) - Navigate to folder in current tab (existing) - Multi-selection - Open files in respective applications - Open folders in a new tab each
1 parent 6285fe6 commit 3bf92b7

File tree

4 files changed

+76
-330
lines changed

4 files changed

+76
-330
lines changed

Files UWP/GenericFileBrowser.xaml.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -335,7 +335,7 @@ private void AllView_PreviewKeyDown(object sender, KeyRoutedEventArgs e)
335335
{
336336
if (e.Key == VirtualKey.Enter)
337337
{
338-
tabInstance.instanceInteraction.OpenItem_Click(null, null);
338+
tabInstance.instanceInteraction.List_ItemClick(null, null);
339339
e.Handled = true;
340340
}
341341
}

0 commit comments

Comments
 (0)