diff options
author | sr55 <[email protected]> | 2018-01-13 20:30:44 +0000 |
---|---|---|
committer | sr55 <[email protected]> | 2018-01-13 20:31:06 +0000 |
commit | d076119d72215edfd3388ebe0d4ee2256f17d586 (patch) | |
tree | 1d5dd2616a96745dfa59d6a8ddec5dddb324a304 /win/CS/HandBrakeWPF/ViewModels/QueueViewModel.cs | |
parent | 3c35763f418801a564b07a7c6818337c93f8aeef (diff) |
WinGui: Reselect the last selected preset (if still available) when editing a queue task. Fix a bug on the summary task not rendering correctly when queue editing.
Diffstat (limited to 'win/CS/HandBrakeWPF/ViewModels/QueueViewModel.cs')
-rw-r--r-- | win/CS/HandBrakeWPF/ViewModels/QueueViewModel.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/win/CS/HandBrakeWPF/ViewModels/QueueViewModel.cs b/win/CS/HandBrakeWPF/ViewModels/QueueViewModel.cs index f2b2d7b9b..52a09def3 100644 --- a/win/CS/HandBrakeWPF/ViewModels/QueueViewModel.cs +++ b/win/CS/HandBrakeWPF/ViewModels/QueueViewModel.cs @@ -450,7 +450,7 @@ namespace HandBrakeWPF.ViewModels // Pass a copy of the job back to the Main Screen
IMainViewModel mvm = IoC.Get<IMainViewModel>();
- mvm.EditQueueJob(new EncodeTask(task.Task));
+ mvm.EditQueueJob(task);
}
public void OpenSourceDirectory(QueueTask task)
|