diff options
author | sr55 <[email protected]> | 2016-07-25 20:29:44 +0100 |
---|---|---|
committer | sr55 <[email protected]> | 2016-07-25 20:29:44 +0100 |
commit | 96e2f705a48ed96db9172203ade1c6ab30937dde (patch) | |
tree | 1aa4554abf2ee1beedf7dfa7e94070b8a96305d3 /win/CS/HandBrakeWPF/Startup | |
parent | 1903ac850ad0374b765ef3a058570a4bec067115 (diff) |
WinGui: Lay the foundation for editing presets with a simple rename window.
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 70fe9e306..1e4a8a8ad 100644 --- a/win/CS/HandBrakeWPF/Startup/AppBootstrapper.cs +++ b/win/CS/HandBrakeWPF/Startup/AppBootstrapper.cs @@ -73,6 +73,7 @@ namespace HandBrakeWPF.Startup this.container.Singleton<IMainViewModel, MainViewModel>();
this.container.Singleton<IQueueViewModel, QueueViewModel>();
this.container.PerRequest<IAddPresetViewModel, AddPresetViewModel>();
+ this.container.PerRequest<IManagePresetViewModel, ManagePresetViewModel>();
this.container.Singleton<ILogViewModel, LogViewModel>();
this.container.Singleton<IAboutViewModel, AboutViewModel>();
this.container.Singleton<IOptionsViewModel, OptionsViewModel>();
|