diff options
author | sr55 <[email protected]> | 2017-08-23 19:40:20 +0100 |
---|---|---|
committer | sr55 <[email protected]> | 2017-08-23 19:40:20 +0100 |
commit | 0efb28ba6f4cc3970921480522f98e7830a03619 (patch) | |
tree | cbae819e65010e9cf49d53696812a56cf95f3c90 /win/CS/HandBrakeWPF/Startup | |
parent | 9fd048196eb423965496c14dac683e6e2546e14f (diff) |
WinGui: Initial implementation of the Summary Tab. This may be subject to change. #833
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 44043d95d..66cc7aafa 100644 --- a/win/CS/HandBrakeWPF/Startup/AppBootstrapper.cs +++ b/win/CS/HandBrakeWPF/Startup/AppBootstrapper.cs @@ -89,6 +89,7 @@ namespace HandBrakeWPF.Startup this.container.Singleton<IFiltersViewModel, FiltersViewModel>();
this.container.Singleton<IVideoViewModel, VideoViewModel>();
this.container.Singleton<IMetaDataViewModel, MetaDataViewModel>();
+ this.container.Singleton<ISummaryViewModel, SummaryViewModel>();
// Shell
this.container.Singleton<IShellViewModel, ShellViewModel>();
|