diff options
author | sr55 <[email protected]> | 2011-12-30 22:21:44 +0000 |
---|---|---|
committer | sr55 <[email protected]> | 2011-12-30 22:21:44 +0000 |
commit | aad50499b32c44d28a6bae7f353b579e24564e25 (patch) | |
tree | 7e5f309e184d9d65785de1a00d4b94735a65b7cf /win/CS/HandBrakeWPF/ViewModels/MainViewModel.cs | |
parent | cd3e951792f05944fb9ba4f1bc17e581318bfe8f (diff) |
WinGui: (WPF) Bug fixes, Initial work on the Filters View
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@4394 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, 2 insertions, 0 deletions
diff --git a/win/CS/HandBrakeWPF/ViewModels/MainViewModel.cs b/win/CS/HandBrakeWPF/ViewModels/MainViewModel.cs index daf8bcce0..68b327ec1 100644 --- a/win/CS/HandBrakeWPF/ViewModels/MainViewModel.cs +++ b/win/CS/HandBrakeWPF/ViewModels/MainViewModel.cs @@ -1050,6 +1050,8 @@ namespace HandBrakeWPF.ViewModels this.NotifyOfPropertyChange("ScannedSource");
this.NotifyOfPropertyChange("ScannedSource.Titles");
this.SelectedTitle = this.ScannedSource.Titles.Where(t => t.MainTitle).FirstOrDefault();
+ this.JobContextService.CurrentSource = this.ScannedSource;
+ this.JobContextService.CurrentTask = this.CurrentTask;
}
this.SourceLabel = "Scan Completed";
|