Browse Source

Add easter egg

Signed-off-by: Syrone Wong <wong.syrone@gmail.com>
tags/3.3.2
Syrone Wong 8 years ago
parent
commit
c671c7c32d
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

@@ -566,7 +566,11 @@ namespace Shadowsocks.View
{
if (e.Button == MouseButtons.Left)
{
// TODO: show something interesting
// 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)
{


Loading…
Cancel
Save