Skip to content

Commit

Permalink
Quick fix for 1.10 releases
Browse files Browse the repository at this point in the history
  • Loading branch information
willtrnr committed Aug 7, 2021
1 parent d461c75 commit a027254
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion AffinityEx.Core/AppContext.cs
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ public void RunSingleInstance() {
}
Log.Information("Preparing execution");
Directory.SetCurrentDirectory(this.InstallationDirectory);
this.Application = (Serif.Affinity.Application) Activator.CreateInstance(this.ApplicationType);
this.Application = (Serif.Affinity.Application) Activator.CreateInstance(this.ApplicationType, true);
this.InitialisePlugins();
Log.Information("Starting wrapped application");
this.Application.RunSingleInstance();
Expand Down

0 comments on commit a027254

Please sign in to comment.