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/frmMain.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/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 2d022bedb..9242bac0b 100644 --- a/win/CS/frmMain.cs +++ b/win/CS/frmMain.cs @@ -2236,7 +2236,7 @@ namespace Handbrake this.AudioSettings.LoadTracks(preset);
// Set the destination path);
- this.text_destination.Text = queueEdit.Destination;
+ this.text_destination.Text = queueEdit.Task.Destination;
// The x264 widgets will need updated, so do this now:
x264Panel.StandardizeOptString();
@@ -2355,7 +2355,7 @@ namespace Handbrake // Scan
queueEdit = job; // Nasty but will do for now. TODO
- StartScan(job.Source, job.Title);
+ StartScan(job.Task.Source, job.Task.Title);
}
#endregion
|