diff options
author | sr55 <[email protected]> | 2019-09-08 12:39:35 +0100 |
---|---|---|
committer | sr55 <[email protected]> | 2019-09-08 12:39:35 +0100 |
commit | 3639be01cf58aa2085ddd48836c52c11a1597c73 (patch) | |
tree | 916a34db6122975685e9a83977949d70ab87eb28 /win/CS/HandBrakeWPF/Services/Queue/Model | |
parent | 258118e4fdc674fde411c8a4131c611e9e35c773 (diff) |
WinGui: Make a note of what the base preset was in the log when starting an encode #2298
Diffstat (limited to 'win/CS/HandBrakeWPF/Services/Queue/Model')
-rw-r--r-- | win/CS/HandBrakeWPF/Services/Queue/Model/QueueTask.cs | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/win/CS/HandBrakeWPF/Services/Queue/Model/QueueTask.cs b/win/CS/HandBrakeWPF/Services/Queue/Model/QueueTask.cs index f3d7bb6e4..52a77f714 100644 --- a/win/CS/HandBrakeWPF/Services/Queue/Model/QueueTask.cs +++ b/win/CS/HandBrakeWPF/Services/Queue/Model/QueueTask.cs @@ -22,7 +22,6 @@ namespace HandBrakeWPF.Services.Queue.Model using EncodeTask = HandBrakeWPF.Services.Encode.Model.EncodeTask;
-
public class QueueTask : PropertyChangedBase
{
private static int id;
@@ -37,7 +36,7 @@ namespace HandBrakeWPF.Services.Queue.Model this.Statistics = new QueueStats();
}
- public QueueTask(EncodeTask task, HBConfiguration configuration, string scannedSourcePath, Preset currentPreset)
+ public QueueTask(EncodeTask task, HBConfiguration configuration, string scannedSourcePath, Preset currentPreset, bool isPresetModified)
{
this.Task = task;
this.Configuration = configuration;
@@ -46,6 +45,10 @@ namespace HandBrakeWPF.Services.Queue.Model if (currentPreset != null)
{
this.presetKey = currentPreset.Name;
+ if (isPresetModified)
+ {
+ this.presetKey = this.presetKey + " (Modified)";
+ }
}
id = id + 1;
|