diff options
author | sr55 <[email protected]> | 2012-06-16 12:40:05 +0000 |
---|---|---|
committer | sr55 <[email protected]> | 2012-06-16 12:40:05 +0000 |
commit | ff27427d20803a01800a288fbd3d8426cab7eb56 (patch) | |
tree | f6b4ed03656149433cbe9d436df9c8b88c6ac76b /win/CS/HandBrakeWPF/ViewModels/QueueViewModel.cs | |
parent | 0238140a12f273586ff1ad0b2416690fa44a4ecb (diff) |
WinGui: Various fixes
- Add tooltip to each queue item to indicate some primary settings.
- Removed some legacy preset code.
- Fixed Queue Recovery
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@4740 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'win/CS/HandBrakeWPF/ViewModels/QueueViewModel.cs')
-rw-r--r-- | win/CS/HandBrakeWPF/ViewModels/QueueViewModel.cs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/win/CS/HandBrakeWPF/ViewModels/QueueViewModel.cs b/win/CS/HandBrakeWPF/ViewModels/QueueViewModel.cs index b72e093ea..e1c8fccb7 100644 --- a/win/CS/HandBrakeWPF/ViewModels/QueueViewModel.cs +++ b/win/CS/HandBrakeWPF/ViewModels/QueueViewModel.cs @@ -280,6 +280,7 @@ namespace HandBrakeWPF.ViewModels public void RetryJob(QueueTask task)
{
task.Status = QueueItemStatus.Waiting;
+ this.queueProcessor.QueueManager.BackupQueue(null);
}
/// <summary>
|