summaryrefslogtreecommitdiffstats
path: root/macosx/HBAddPresetController.m
diff options
context:
space:
mode:
authorDamiano Galassi <[email protected]>2015-08-29 17:36:17 +0200
committerDamiano Galassi <[email protected]>2015-08-29 17:36:17 +0200
commit20c7281478497e77af55c95da9a9bddc393e9b2d (patch)
tree0d7e658bb85ea982c70797c7051c1be09dc68262 /macosx/HBAddPresetController.m
parent2d847fea38299aa444bd27b1d9133f10eb9043a5 (diff)
MacGui: default to 'source maximum' in the Picture Size popup of the add preset window
Diffstat (limited to 'macosx/HBAddPresetController.m')
-rw-r--r--macosx/HBAddPresetController.m7
1 files changed, 2 insertions, 5 deletions
diff --git a/macosx/HBAddPresetController.m b/macosx/HBAddPresetController.m
index 14999dfc6..61483a675 100644
--- a/macosx/HBAddPresetController.m
+++ b/macosx/HBAddPresetController.m
@@ -62,11 +62,8 @@
[self.picSettingsPopUp addItemWithTitle:NSLocalizedString(@"Source Maximum (post source scan)", @"")];
[[self.picSettingsPopUp lastItem] setTag: 2];
- /*
- * Default to Source Maximum for anamorphic Strict
- * Default to Custom for all other anamorphic modes
- */
- [self.picSettingsPopUp selectItemWithTag: (1 + ([self.preset.content[@"PicturePAR"] integerValue] == HB_ANAMORPHIC_STRICT))];
+ //Default to Source Maximum
+ [self.picSettingsPopUp selectItemWithTag:2];
/* Initialize custom height and width settings to current values */
[self.picWidth setStringValue: [NSString stringWithFormat:@"%d", (int)self.size.width]];