Skip to content

Commit

Permalink
Set UseShellExecute option (#33)
Browse files Browse the repository at this point in the history
  • Loading branch information
shibayan authored Jun 21, 2020
1 parent c8b658d commit bd595ae
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion WinQuickLook/QuickLookWindow.xaml.cs
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,7 @@ private void OpenButton_Click(object sender, RoutedEventArgs e)
{
try
{
Process.Start(_fileInfo.FullName);
Process.Start(new ProcessStartInfo(_fileInfo.FullName) { UseShellExecute = true });

HideIfVisible();
}
Expand Down

0 comments on commit bd595ae

Please sign in to comment.