summaryrefslogtreecommitdiffstats
path: root/macosx/Controller.mm
diff options
context:
space:
mode:
Diffstat (limited to 'macosx/Controller.mm')
-rw-r--r--macosx/Controller.mm26
1 files changed, 5 insertions, 21 deletions
diff --git a/macosx/Controller.mm b/macosx/Controller.mm
index 6ef426af4..8943fbbee 100644
--- a/macosx/Controller.mm
+++ b/macosx/Controller.mm
@@ -1323,18 +1323,11 @@ static NSString * ChooseSourceIdentifier = @"Choose Source It
if (currentSuccessfulScanCount == 1)
{
[self selectDefaultPreset:nil];
- /* if Deinterlace upon launch is specified in the prefs, then set to 1 for "Fast",
- if not, then set to 0 for none */
- if ([[NSUserDefaults standardUserDefaults] boolForKey:@"DefaultDeinterlaceOn"] > 0)
- {
- [fPictureController setDeinterlace:1];
- }
- else
- {
- [fPictureController setDeinterlace:0];
- }
+ /* initially set deinterlace to 0, will be overridden reset by the default preset anyway */
+ //[fPictureController setDeinterlace:0];
+
/* lets set Denoise to index 0 or "None" since this is the first scan */
- [fPictureController setDenoise:0];
+ //[fPictureController setDenoise:0];
[fPictureController setInitialPictureFilters];
}
@@ -2101,15 +2094,6 @@ static NSString * ChooseSourceIdentifier = @"Choose Source It
hb_job_t * job = title->job;
fTitle = title;
- /* Pixel Ratio Setting */
- if ([[NSUserDefaults standardUserDefaults] boolForKey:@"PixelRatio"])
- {
- job->pixel_ratio = 1 ;
- }
- else
- {
- job->pixel_ratio = 0 ;
- }
/*Set Source Size Field Here */
[fPicSettingsSrc setStringValue: [NSString stringWithFormat: @"%d x %d", fTitle->width, fTitle->height]];
@@ -4414,7 +4398,7 @@ if (item == nil)
[fPictureController setDeblock:0];
}
- [self calculatePictureSizing:nil];
+ [self calculatePictureSizing:nil];
}
}