diff options
author | sr55 <[email protected]> | 2020-06-05 14:08:15 +0100 |
---|---|---|
committer | sr55 <[email protected]> | 2020-06-05 14:08:28 +0100 |
commit | afc7e2a2c94bc81b425063361e87e9351c16dd73 (patch) | |
tree | 92c3f343d2e23068d929a42c879fc82b0c7bf94e /win/CS/HandBrakeWPF/Startup | |
parent | f61c986d9a5a706b7bbc96c79f5eba209dd18ca5 (diff) |
WinGui: UI performance improvement when starting multiple jobs. #2912
Diffstat (limited to 'win/CS/HandBrakeWPF/Startup')
-rw-r--r-- | win/CS/HandBrakeWPF/Startup/AppBootstrapper.cs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/win/CS/HandBrakeWPF/Startup/AppBootstrapper.cs b/win/CS/HandBrakeWPF/Startup/AppBootstrapper.cs index 16e5cad60..e2280ee80 100644 --- a/win/CS/HandBrakeWPF/Startup/AppBootstrapper.cs +++ b/win/CS/HandBrakeWPF/Startup/AppBootstrapper.cs @@ -87,6 +87,7 @@ namespace HandBrakeWPF.Startup this.container.Singleton<ISystemService, SystemService>();
this.container.Singleton<IHbFunctionsProvider, HbFunctionsProvider>();
this.container.Singleton<ILogInstanceManager, LogInstanceManager>();
+ this.container.Singleton<IPortService, PortService>();
// Tab Components
this.container.Singleton<IAudioViewModel, AudioViewModel>();
|