Skip to content

Commit 48ed13f

Browse files
committed
Fixed opening license file
1 parent 5879c8a commit 48ed13f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

PK Finder/Windows/AboutWindow.xaml.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ private void BtnLicense_OnClick(object sender, RoutedEventArgs e)
6868
{
6969
try
7070
{
71-
Process.Start(AppDomain.CurrentDomain.BaseDirectory + "\\gpl.pdf");
71+
Process.Start(new ProcessStartInfo(AppDomain.CurrentDomain.BaseDirectory + "license.pdf") { UseShellExecute = true });
7272
}
7373
catch (Exception ex)
7474
{

0 commit comments

Comments
 (0)