diff options
Diffstat (limited to 'macosx/Controller.mm')
-rw-r--r-- | macosx/Controller.mm | 8 |
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):"]; } |