diff --git a/code/src/FileGroupTab.cs b/code/src/FileGroupTab.cs index e6e1275..3645681 100644 --- a/code/src/FileGroupTab.cs +++ b/code/src/FileGroupTab.cs @@ -571,10 +571,11 @@ namespace FileWatcher try { - updated(m_UpdatedFiles); - + var updateFiles = m_UpdatedFiles; m_UpdatedFiles.Clear(); + updated(updateFiles); + Logger.Log("Just finished running '" + ScriptPath + "'"); Form1.Instance.notifyIcon1.ShowBalloonTip(500, "Script Ran", "Finished running '" + ScriptPath + "'", ToolTipIcon.Info);