From 8cf582803d1339333f9c77786aa6bf7f110a0eac Mon Sep 17 00:00:00 2001 From: Syrone Wong Date: Thu, 22 Sep 2016 08:40:22 +0800 Subject: [PATCH] Fix #740 >_< Signed-off-by: Syrone Wong --- shadowsocks-csharp/View/MenuViewController.cs | 10 +--------- 1 file changed, 1 insertion(+), 9 deletions(-) diff --git a/shadowsocks-csharp/View/MenuViewController.cs b/shadowsocks-csharp/View/MenuViewController.cs index 07824258..dcce2324 100644 --- a/shadowsocks-csharp/View/MenuViewController.cs +++ b/shadowsocks-csharp/View/MenuViewController.cs @@ -564,15 +564,7 @@ namespace Shadowsocks.View 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(); }