diff options
author | sr55 <[email protected]> | 2012-09-30 14:08:03 +0000 |
---|---|---|
committer | sr55 <[email protected]> | 2012-09-30 14:08:03 +0000 |
commit | 6b70a7fb55f7b21e3c153c92c5c9186d3b92e3ab (patch) | |
tree | a2e730948e97f3b27d054c0f7e58172e90538582 /win/CS/HandBrakeWPF/ViewModels/MainViewModel.cs | |
parent | 6206cd1e041df6ccaafae8de70624dd9e4dc8a7d (diff) |
WinGui: Misc Fixes
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@4997 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 acc59e60e..c2aef69ed 100644 --- a/win/CS/HandBrakeWPF/ViewModels/MainViewModel.cs +++ b/win/CS/HandBrakeWPF/ViewModels/MainViewModel.cs @@ -1080,7 +1080,7 @@ namespace HandBrakeWPF.ViewModels }
// Otherwise, perform Santiy Checking then add to the queue and start if everything is ok.
- if (this.ScannedSource == null || this.CurrentTask == null)
+ if (this.SelectedTitle == null)
{
this.errorService.ShowMessageBox("You must first scan a source.", "Error", MessageBoxButton.OK, MessageBoxImage.Error);
return;
|