mirror of
https://github.com/kangyu-california/PersistentWindows.git
synced 2025-05-11 13:05:38 +02:00
remove leading space char from trayicon initial title
This commit is contained in:
parent
527d3bd9ae
commit
785b8fe0c4
1 changed files with 1 additions and 1 deletions
|
@ -65,7 +65,7 @@ namespace PersistentWindows.Common.Minimize2Tray
|
|||
if (dash_idx > 0)
|
||||
{
|
||||
//rest of window txt is the real application name
|
||||
_systemTrayIcon.Text = TruncateString(_window_txt.Substring(dash_idx + 1), 63);
|
||||
_systemTrayIcon.Text = TruncateString(_window_txt.Substring(dash_idx + 2), 63);
|
||||
}
|
||||
|
||||
_timer = new System.Timers.Timer(500);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue