Browse Source

Fix #740

>_<

Signed-off-by: Syrone Wong <wong.syrone@gmail.com>
tags/3.3.2
Syrone Wong 8 years ago
parent
commit
8cf582803d
1 changed files with 1 additions and 9 deletions
  1. +1
    -9
      shadowsocks-csharp/View/MenuViewController.cs

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

@@ -564,15 +564,7 @@ namespace Shadowsocks.View
private void notifyIcon1_Click(object sender, MouseEventArgs e) private void notifyIcon1_Click(object sender, MouseEventArgs e)
{ {
if (e.Button == MouseButtons.Left)
{
// Easter egg
_notifyIcon.BalloonTipTitle = "Keep a low profile";
_notifyIcon.BalloonTipText = "If you want to keep a secret, you must also hide it from yourself.";
_notifyIcon.BalloonTipIcon = ToolTipIcon.Warning;
_notifyIcon.ShowBalloonTip(5 * 1000);
}
else if (e.Button == MouseButtons.Middle)
if ( e.Button == MouseButtons.Middle )
{ {
ShowLogForm(); ShowLogForm();
} }


Loading…
Cancel
Save