From b6da609cff56c398379b9198bb44e4f4dfc32941 Mon Sep 17 00:00:00 2001 From: clowwindy Date: Mon, 10 Nov 2014 03:18:37 +0800 Subject: [PATCH] update update notification --- shadowsocks-csharp/View/ConfigForm.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/shadowsocks-csharp/View/ConfigForm.cs b/shadowsocks-csharp/View/ConfigForm.cs index e4cfda2b..2629dc13 100755 --- a/shadowsocks-csharp/View/ConfigForm.cs +++ b/shadowsocks-csharp/View/ConfigForm.cs @@ -62,7 +62,7 @@ namespace Shadowsocks.View void updateChecker_NewVersionFound(object sender, EventArgs e) { notifyIcon1.BalloonTipTitle = "Shadowsocks " + updateChecker.LatestVersionNumber + " Update Found"; - notifyIcon1.BalloonTipText = "You can click here to download"; + notifyIcon1.BalloonTipText = "Click here to download"; notifyIcon1.BalloonTipIcon = ToolTipIcon.Info; notifyIcon1.BalloonTipClicked += notifyIcon1_BalloonTipClicked; notifyIcon1.ShowBalloonTip(5000);