diff options
author | sr55 <[email protected]> | 2012-03-25 18:14:10 +0000 |
---|---|---|
committer | sr55 <[email protected]> | 2012-03-25 18:14:10 +0000 |
commit | 479f2a8da44ee1237acdf187892e0bf2e77c5663 (patch) | |
tree | 7afe479dcc484fe8319019c2216e954c3e30a6cd /win/CS/frmPreview.cs | |
parent | 970ae1ed9f3c05fa4a8a4bc454892ef63278c721 (diff) |
WinGuWinGui:(WPF) Remove some legacy queue code with the queue models and fix up some issues with the quality slider on the new video tab. Improve the User settings service code.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@4542 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'win/CS/frmPreview.cs')
-rw-r--r-- | win/CS/frmPreview.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/win/CS/frmPreview.cs b/win/CS/frmPreview.cs index f070e0503..7ebea1acc 100644 --- a/win/CS/frmPreview.cs +++ b/win/CS/frmPreview.cs @@ -219,7 +219,7 @@ namespace Handbrake int duration;
int.TryParse(endPoint.Text, out duration);
string query = QueryGenerator.GeneratePreviewQuery(this.mainWindow, duration, startPoint.Text);
- QueueTask task = new QueueTask(query) { Destination = this.mainWindow.text_destination.Text };
+ QueueTask task = new QueueTask(query) { Task = { Destination = this.mainWindow.text_destination.Text } };
ThreadPool.QueueUserWorkItem(this.CreatePreview, task);
}
|