Skip to content

Commit 13a9472

Browse files
committed
fix libss
1 parent 3bca7b7 commit 13a9472

File tree

3 files changed

+4
-2
lines changed

3 files changed

+4
-2
lines changed
-3.58 KB
Binary file not shown.
-3.96 KB
Binary file not shown.

shadowsocks-csharp/View/MenuViewController.cs

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -194,8 +194,10 @@ private void UpdateTrayIcon()
194194

195195
// we want to show more details but notify icon title is limited to 63 characters
196196
string text = (enabled ?
197-
I18N.GetString("System Proxy On: ") + (global ? I18N.GetString("Global") : I18N.GetString("PAC")) :
198-
String.Format(I18N.GetString("Running: Port {0}"), config.localPort)) // this feedback is very important because they need to know Shadowsocks is running
197+
(global ? I18N.GetString("Global") : I18N.GetString("PAC")) :
198+
I18N.GetString("Disable system proxy"))
199+
+ "\r\n"
200+
+ String.Format(I18N.GetString("Running: Port {0}"), config.localPort) // this feedback is very important because they need to know Shadowsocks is running
199201
;
200202
_notifyIcon.Text = text.Substring(0, Math.Min(63, text.Length));
201203
}

0 commit comments

Comments
 (0)