diff options
author | dynaflash <[email protected]> | 2007-04-10 18:13:29 +0000 |
---|---|---|
committer | dynaflash <[email protected]> | 2007-04-10 18:13:29 +0000 |
commit | 1ce785c8d342834c33ee09e63315c5997782f919 (patch) | |
tree | 1e984dbcaab3719c1c1bd91db5c68985b70b6ab3 | |
parent | 8777001204cb0710f573363f841759d8db69b076 (diff) |
MacGui: Framerate Revert changes back to "Same as Source" from rev 492
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@493 b64f7644-9d1e-0410-96f1-a4d463321fa5
-rw-r--r-- | macosx/Controller.mm | 15 |
1 files changed, 3 insertions, 12 deletions
diff --git a/macosx/Controller.mm b/macosx/Controller.mm index a22128f7f..04d54ea7f 100644 --- a/macosx/Controller.mm +++ b/macosx/Controller.mm @@ -179,16 +179,13 @@ static int FormatSettings[3][4] = /* Video framerate */ [fVidRatePopUp removeAllItems]; - /* Lets deprecate Same as Source for now, will leave it - here but commented out in case we change our minds */ - //[fVidRatePopUp addItemWithTitle: _( @"Same as source" )]; + [fVidRatePopUp addItemWithTitle: _( @"Same as source" )]; for( int i = 0; i < hb_video_rates_count; i++ ) { [fVidRatePopUp addItemWithTitle: [NSString stringWithCString: hb_video_rates[i].string]]; } - /* we default to the most common film framerate */ - [fVidRatePopUp selectItemWithTitle: @"23.976"]; + [fVidRatePopUp selectItemAtIndex: 0]; /* Picture Settings */ [fPicLabelPAROutp setStringValue: @""]; @@ -2018,14 +2015,8 @@ the user is using "Custom" settings by determining the sender*/ [self VideoMatrixChanged: NULL]; /* Video framerate */ - if ([[chosenPreset objectForKey:@"VideoFramerate"] isEqualToString: @"Same as source"]) - { - [fVidRatePopUp selectItemWithTitle: @"23.976"]; - } - else - { [fVidRatePopUp selectItemWithTitle: [NSString stringWithFormat:[chosenPreset valueForKey:@"VideoFramerate"]]]; - } + /* GrayScale */ [fVidGrayscaleCheck setState:[[chosenPreset objectForKey:@"VideoGrayScale"] intValue]]; |