diff options
author | sr55 <[email protected]> | 2011-10-25 21:31:15 +0000 |
---|---|---|
committer | sr55 <[email protected]> | 2011-10-25 21:31:15 +0000 |
commit | 6619723bda6ac183322dbc7ee908edcd013b9e7d (patch) | |
tree | 34b4cefafbeae2c7577d8ae1703fccd6c68441d5 /win/CS/HandBrakeWPF/ViewModels/MainViewModel.cs | |
parent | a8802a947f04293cbc3a87a1d750c0add43666f2 (diff) |
WinGui: (WPF) Further work on the options screen. Initial rough styling and Load method.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@4319 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'win/CS/HandBrakeWPF/ViewModels/MainViewModel.cs')
-rw-r--r-- | win/CS/HandBrakeWPF/ViewModels/MainViewModel.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/win/CS/HandBrakeWPF/ViewModels/MainViewModel.cs b/win/CS/HandBrakeWPF/ViewModels/MainViewModel.cs index ddc0f4472..e1976cbdd 100644 --- a/win/CS/HandBrakeWPF/ViewModels/MainViewModel.cs +++ b/win/CS/HandBrakeWPF/ViewModels/MainViewModel.cs @@ -217,7 +217,7 @@ namespace HandBrakeWPF.ViewModels /// </summary>
public void OpenOptionsWindow()
{
- this.WindowManager.ShowWindow(new OptionsViewModel(this.WindowManager));
+ this.WindowManager.ShowWindow(new OptionsViewModel(this.WindowManager, this.userSettingService));
}
/// <summary>
|