From: dynaflash Date: Tue, 19 Feb 2008 04:37:47 +0000 (+0000) Subject: MacGui: As per newer vfr implementation. No longer disable the framerate popup and... X-Git-Tag: 0.9.2~8 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=7df6477a2e1113c8a5b4986fc51c18284ae85825;p=handbrake MacGui: As per newer vfr implementation. No longer disable the framerate popup and no longer force it to 29.967 fps. git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@1295 b64f7644-9d1e-0410-96f1-a4d463321fa5 --- diff --git a/macosx/Controller.mm b/macosx/Controller.mm index 362f349cc..ba991552e 100644 --- a/macosx/Controller.mm +++ b/macosx/Controller.mm @@ -2648,18 +2648,12 @@ the user is using "Custom" settings by determining the sender*/ /* VFR (Variable Frame Rate) */ if ([fPictureController vfr]) { - /* vfr has to set the framerate to 29.97 (ntsc video) - and disable the framerate popup */ - [fVidRatePopUp selectItemAtIndex: 8]; - [fVidRatePopUp setEnabled: NO]; /* We change the string of the fps popup to warn that vfr is on Framerate (FPS): */ [fVidRateField setStringValue: @"Framerate (VFR On):"]; } else { - /* vfr is off, make sure the framerate popup is enabled */ - [fVidRatePopUp setEnabled: YES]; - /* and make sure the label for framerate is set to its default */ + /* make sure the label for framerate is set to its default */ [fVidRateField setStringValue: @"Framerate (FPS):"]; }