diff options
author | sr55 <[email protected]> | 2011-11-17 21:42:21 +0000 |
---|---|---|
committer | sr55 <[email protected]> | 2011-11-17 21:42:21 +0000 |
commit | 5be7a347e6a670d20c5675b1afe05423a39486c0 (patch) | |
tree | 96804066cc0401711c426a30419b91598d1feb98 /win/CS/frmMain.cs | |
parent | 597e0303b344558c877d38ebfb4c3677d9a3ca22 (diff) |
WinGui: Some issues with loading ffmpeg4 encoder via presets fixed.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@4355 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'win/CS/frmMain.cs')
-rw-r--r-- | win/CS/frmMain.cs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/win/CS/frmMain.cs b/win/CS/frmMain.cs index 6e8f97fcc..a8780aa85 100644 --- a/win/CS/frmMain.cs +++ b/win/CS/frmMain.cs @@ -1243,8 +1243,8 @@ namespace Handbrake }
// Add the job.
-
- this.queueProcessor.QueueManager.Add(QueryGenerator.GenerateFullQuery(this));
+ QueueTask query = QueryGenerator.GenerateFullQuery(this);
+ this.queueProcessor.QueueManager.Add(query);
lbl_encode.Text = this.queueProcessor.QueueManager.Count + " encode(s) pending in the queue";
|