From 55765cdc92f88605709969904eb2ba2f3903fdcd Mon Sep 17 00:00:00 2001 From: Paddy Xu Date: Wed, 3 Aug 2016 11:36:09 +0300 Subject: [PATCH] Temporary solution for NotifyIcon balloon on Windows 10 1607 --- LEUpdater/ApplicationUpdater.cs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/LEUpdater/ApplicationUpdater.cs b/LEUpdater/ApplicationUpdater.cs index 11af61b..7bafde5 100644 --- a/LEUpdater/ApplicationUpdater.cs +++ b/LEUpdater/ApplicationUpdater.cs @@ -64,6 +64,8 @@ private static void ProcessUpdate(XmlDocument xmlContent, NotifyIcon notifyIcon) $"New Version {version} Available (Current: {GlobalHelper.GetLEVersion()})", $"{note}\r\n" + "\r\n" + "Click here to open download page.", ToolTipIcon.Info); + + notifyIcon.Text = $"New Version {version} Available."; } catch (Exception) {