diff options
author | sr55 <[email protected]> | 2019-12-29 21:08:24 +0000 |
---|---|---|
committer | sr55 <[email protected]> | 2019-12-29 21:08:24 +0000 |
commit | ba012a53f4770ce2c70908a72b577fbbe9e8bd39 (patch) | |
tree | 90a5e57b23869889dfb9973d6ba22f1deef098f7 /win/CS/HandBrakeWPF/Services/Queue | |
parent | 282b04f2fe39205664fbccc81aaab1048294811c (diff) |
WinGui: Improve "Send File To". It's arguments text box now accepts "{source}" and "{destination}" as parameters. #2544
Diffstat (limited to 'win/CS/HandBrakeWPF/Services/Queue')
-rw-r--r-- | win/CS/HandBrakeWPF/Services/Queue/QueueService.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/win/CS/HandBrakeWPF/Services/Queue/QueueService.cs b/win/CS/HandBrakeWPF/Services/Queue/QueueService.cs index cf7f642c2..477aacba3 100644 --- a/win/CS/HandBrakeWPF/Services/Queue/QueueService.cs +++ b/win/CS/HandBrakeWPF/Services/Queue/QueueService.cs @@ -509,7 +509,7 @@ namespace HandBrakeWPF.Services.Queue if (!Directory.Exists(Path.GetDirectoryName(job.Task.Destination))) { - this.EncodeServiceEncodeCompleted(null, new EncodeCompletedEventArgs(false, null, "Destination Directory Missing", null, null, 0)); + this.EncodeServiceEncodeCompleted(null, new EncodeCompletedEventArgs(false, null, "Destination Directory Missing", null, null, null, 0)); this.BackupQueue(string.Empty); return; } |