Skip to content

Commit

Permalink
Always call InitializeModules() in PrismApplicationBase even without …
Browse files Browse the repository at this point in the history
…a shell (#1601)
  • Loading branch information
Tobias Droste committed Oct 31, 2018
1 parent 7b6b453 commit dfcf1e1
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion Source/Wpf/Prism.Wpf/PrismApplicationBase.cs
Expand Up @@ -86,8 +86,9 @@ public virtual void Initialize()
RegionManager.SetRegionManager(shell, _containerExtension.Resolve<IRegionManager>());
RegionManager.UpdateRegions();
InitializeShell(shell);
InitializeModules();
}

InitializeModules();
}

/// <summary>
Expand Down

0 comments on commit dfcf1e1

Please sign in to comment.