summaryrefslogtreecommitdiffstats
path: root/win/CS/HandBrakeWPF/ViewModels/Interfaces
diff options
context:
space:
mode:
authorsr55 <[email protected]>2016-02-20 21:21:45 +0000
committersr55 <[email protected]>2016-02-20 21:21:45 +0000
commitfa82fc310a78663421faa9a2b0c27cccf3fc6446 (patch)
tree305d1c0460ad297c193604fdb5b0012afaa517df /win/CS/HandBrakeWPF/ViewModels/Interfaces
parentead31bdf2ea3dacd0ff5c9f576de14e6d7d918e3 (diff)
WinGui: Added a text block on the Queue Add selection that shows the current preset to be used to for adding to the queue.
Diffstat (limited to 'win/CS/HandBrakeWPF/ViewModels/Interfaces')
-rw-r--r--win/CS/HandBrakeWPF/ViewModels/Interfaces/IQueueSelectionViewModel.cs6
1 files changed, 5 insertions, 1 deletions
diff --git a/win/CS/HandBrakeWPF/ViewModels/Interfaces/IQueueSelectionViewModel.cs b/win/CS/HandBrakeWPF/ViewModels/Interfaces/IQueueSelectionViewModel.cs
index 1b5f3f0b6..33acdfec8 100644
--- a/win/CS/HandBrakeWPF/ViewModels/Interfaces/IQueueSelectionViewModel.cs
+++ b/win/CS/HandBrakeWPF/ViewModels/Interfaces/IQueueSelectionViewModel.cs
@@ -14,6 +14,7 @@ namespace HandBrakeWPF.ViewModels.Interfaces
using System.ComponentModel;
using HandBrakeWPF.Model;
+ using HandBrakeWPF.Services.Presets.Model;
using HandBrakeWPF.Services.Scan.Model;
/// <summary>
@@ -38,6 +39,9 @@ namespace HandBrakeWPF.ViewModels.Interfaces
/// <param name="addAction">
/// The add To Queue action
/// </param>
- void Setup(Source scannedSource, string sourceName, Action<IEnumerable<SelectionTitle>> addAction);
+ /// <param name="preset">
+ /// The preset.
+ /// </param>
+ void Setup(Source scannedSource, string sourceName, Action<IEnumerable<SelectionTitle>> addAction, Preset preset);
}
}