MysticBoy 5 years ago
parent
commit
adab9f9672
1 changed files with 5 additions and 1 deletions
  1. +5
    -1
      shadowsocks-csharp/View/MenuViewController.cs

+ 5
- 1
shadowsocks-csharp/View/MenuViewController.cs View File

@@ -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)


Loading…
Cancel
Save