summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authordynaflash <[email protected]>2008-02-19 04:37:47 +0000
committerdynaflash <[email protected]>2008-02-19 04:37:47 +0000
commit7df6477a2e1113c8a5b4986fc51c18284ae85825 (patch)
treee7bb88a84b38e787d11db807c3c12a1cf61d02ba
parent31c89d275f3e854fa0ac6d8ef52dfb913b1cdddc (diff)
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
-rw-r--r--macosx/Controller.mm8
1 files changed, 1 insertions, 7 deletions
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):"];
}