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/Interfaces | |
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/Interfaces')
-rw-r--r-- | win/CS/HandBrakeWPF/ViewModels/Interfaces/IMainViewModel.cs | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/win/CS/HandBrakeWPF/ViewModels/Interfaces/IMainViewModel.cs b/win/CS/HandBrakeWPF/ViewModels/Interfaces/IMainViewModel.cs index bcc72b9dd..19b1c0001 100644 --- a/win/CS/HandBrakeWPF/ViewModels/Interfaces/IMainViewModel.cs +++ b/win/CS/HandBrakeWPF/ViewModels/Interfaces/IMainViewModel.cs @@ -11,6 +11,8 @@ namespace HandBrakeWPF.ViewModels.Interfaces {
using System.Windows;
+ using HandBrakeWPF.Services.Queue.Model;
+
using EncodeTask = HandBrakeWPF.Services.Encode.Model.EncodeTask;
/// <summary>
@@ -96,7 +98,7 @@ namespace HandBrakeWPF.ViewModels.Interfaces /// <param name="task">
/// The task.
/// </param>
- void EditQueueJob(EncodeTask task);
+ void EditQueueJob(QueueTask task);
/// <summary>
/// Shutdown this View
|