diff options
-rw-r--r-- | macosx/Controller.m | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/macosx/Controller.m b/macosx/Controller.m index 78d99280d..a72abcf9f 100644 --- a/macosx/Controller.m +++ b/macosx/Controller.m @@ -2578,9 +2578,9 @@ fWorkingCount = 0; [self writeToActivityLog: "scanning specifically for title: %d", scanTitleNum]; } - /* We use our advance pref to determine how many previews to scan */ - int hb_num_previews = [[[NSUserDefaults standardUserDefaults] objectForKey:@"PreviewsNumber"] intValue]; - hb_scan( fQueueEncodeLibhb, [path UTF8String], scanTitleNum, hb_num_previews, 0 , 0 ); + /* Only scan 10 previews before an encode - additional previews are only useful for autocrop and static previews, + * which are already taken care of at this point */ + hb_scan( fQueueEncodeLibhb, [path UTF8String], scanTitleNum, 10, 0, 0 ); } } |