diff --git a/shadowsocks-csharp/View/MenuViewController.cs b/shadowsocks-csharp/View/MenuViewController.cs index e31fa67b..40abf6fc 100644 --- a/shadowsocks-csharp/View/MenuViewController.cs +++ b/shadowsocks-csharp/View/MenuViewController.cs @@ -624,7 +624,11 @@ namespace Shadowsocks.View private void AboutItem_Click(object sender, EventArgs e) { - Process.Start("https://github.com/shadowsocks/shadowsocks-windows"); + Process.Start(new ProcessStartInfo("https://github.com/shadowsocks/shadowsocks-windows") + { + UseShellExecute = true, + Verb = "open" + }); } private void notifyIcon1_Click(object sender, MouseEventArgs e)