Jumar Macato
7 years ago
No known key found for this signature in database
GPG Key ID: B19884DAC3A5BF3F
1 changed files with
2 additions and
2 deletions
-
src/Avalonia.Dialogs/AboutAvaloniaDialog.xaml.cs
|
|
|
@ -37,13 +37,13 @@ namespace Avalonia.Dialogs |
|
|
|
} |
|
|
|
else |
|
|
|
{ |
|
|
|
using Process process = Process.Start(new ProcessStartInfo |
|
|
|
using (Process process = Process.Start(new ProcessStartInfo |
|
|
|
{ |
|
|
|
FileName = RuntimeInformation.IsOSPlatform(OSPlatform.Windows) ? url : "open", |
|
|
|
Arguments = RuntimeInformation.IsOSPlatform(OSPlatform.OSX) ? $"-e {url}" : "", |
|
|
|
CreateNoWindow = true, |
|
|
|
UseShellExecute = RuntimeInformation.IsOSPlatform(OSPlatform.Windows) |
|
|
|
}); |
|
|
|
})); |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|