diff options
author | sr55 <[email protected]> | 2011-06-15 17:45:06 +0000 |
---|---|---|
committer | sr55 <[email protected]> | 2011-06-15 17:45:06 +0000 |
commit | b957ee1aaba01b06d9f8b3f26e0385eba061baf2 (patch) | |
tree | 6ca577f1f7cb978c1311b444be9bcac5da4ad373 /win/CS/frmMain.cs | |
parent | 4d7216fba8652a83821be49cd16cc851b5cc4cd2 (diff) |
WinGui:
- Correctly set the number of previews to generate during Scan
- Fix an issue where the CLI query is not printed to the log window.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@4061 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'win/CS/frmMain.cs')
-rw-r--r-- | win/CS/frmMain.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/win/CS/frmMain.cs b/win/CS/frmMain.cs index fb22a8d27..24cc41b57 100644 --- a/win/CS/frmMain.cs +++ b/win/CS/frmMain.cs @@ -2040,7 +2040,7 @@ namespace Handbrake // Start the Scan
try
{
- SourceScan.Scan(sourcePath, title);
+ SourceScan.Scan(sourcePath, title, Properties.Settings.Default.previewScanCount);
}
catch (Exception exc)
{
|