Skip to content

Commit

Permalink
[BUG] NullReferenceException StartWorker() (#469), version 1.3.2.3
Browse files Browse the repository at this point in the history
  • Loading branch information
Hofknecht committed Jul 29, 2023
1 parent 2add728 commit e76790a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 6 deletions.
5 changes: 1 addition & 4 deletions Business/Menus.cs
Expand Up @@ -12,15 +12,12 @@ namespace SystemTrayMenu.Business
using System.IO;
using System.Linq;
using System.Windows.Forms;
using SharpDX.DirectInput;
using SystemTrayMenu.DataClasses;
using SystemTrayMenu.DllImports;
using SystemTrayMenu.Handler;
using SystemTrayMenu.Helper;
using SystemTrayMenu.Helpers;
using SystemTrayMenu.UserInterface;
using SystemTrayMenu.Utilities;
using static System.Windows.Forms.VisualStyles.VisualStyleElement;
using Menu = SystemTrayMenu.UserInterface.Menu;
using Timer = System.Windows.Forms.Timer;

Expand Down Expand Up @@ -304,7 +301,7 @@ internal void StartWorker()

if (!workerMainMenu.IsBusy)
{
LoadStarted();
LoadStarted?.Invoke();
workerMainMenu.RunWorkerAsync(
new object[] { Config.Path, 0 });
}
Expand Down
4 changes: 2 additions & 2 deletions Properties/AssemblyInfo.cs
Expand Up @@ -39,5 +39,5 @@
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("1.3.2.2")]
[assembly: AssemblyFileVersion("1.3.2.2")]
[assembly: AssemblyVersion("1.3.2.3")]
[assembly: AssemblyFileVersion("1.3.2.3")]

0 comments on commit e76790a

Please sign in to comment.