diff options
author | sr55 <[email protected]> | 2013-05-26 11:56:37 +0000 |
---|---|---|
committer | sr55 <[email protected]> | 2013-05-26 11:56:37 +0000 |
commit | ab11d3012d39eaa0991edbd069c602241d63905c (patch) | |
tree | 231045b07e78120291d3d92368d1e77332bc38f0 /win/CS | |
parent | 58c3ff8d0579bab85db1b301c5bbe8fd525217da (diff) |
WinGui: Disable End point affecting the start point for anything other than chapters.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@5516 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'win/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 fd2585337..54911cd81 100644 --- a/win/CS/HandBrakeWPF/ViewModels/MainViewModel.cs +++ b/win/CS/HandBrakeWPF/ViewModels/MainViewModel.cs @@ -789,7 +789,7 @@ namespace HandBrakeWPF.ViewModels this.Destination = AutoNameHelper.AutoName(this.CurrentTask, this.SourceName);
}
- if (this.SelectedStartPoint > this.SelectedEndPoint)
+ if (this.SelectedStartPoint > this.SelectedEndPoint && this.SelectedPointToPoint == PointToPointMode.Chapters)
{
this.SelectedStartPoint = this.SelectedEndPoint;
}
|