OSDN Git Service

MacGui: For VFR set the frame rate to the title frame rate (Same as Source) and disab...
authordynaflash <dynaflash@b64f7644-9d1e-0410-96f1-a4d463321fa5>
Mon, 19 May 2008 15:11:08 +0000 (15:11 +0000)
committerdynaflash <dynaflash@b64f7644-9d1e-0410-96f1-a4d463321fa5>
Mon, 19 May 2008 15:11:08 +0000 (15:11 +0000)
git-svn-id: svn://localhost/HandBrake/trunk@1466 b64f7644-9d1e-0410-96f1-a4d463321fa5

macosx/Controller.mm

index 4491821..b077d8b 100644 (file)
@@ -2695,12 +2695,17 @@ the user is using "Custom" settings by determining the sender*/
     /* VFR (Variable Frame Rate) */
     if ([fPictureController vfr]) {
         /* We change the string of the fps popup to warn that vfr is on Framerate (FPS): */
-        [fVidRateField setStringValue: @"Framerate (VFR On):"];  
+        [fVidRateField setStringValue: @"Framerate (VFR On):"]; 
+        /* for VFR we select same as source (or title framerate) and disable the popup.
+        * We know its index 0 as that is determined in titlePopUpChanged */
+        [fVidRatePopUp selectItemAtIndex: 0];
+        [fVidRatePopUp setEnabled: NO];  
         
     }
     else {
         /* make sure the label for framerate is set to its default */  
         [fVidRateField setStringValue: @"Framerate (FPS):"];
+        [fVidRatePopUp setEnabled: YES];
     }
     
        /* Deinterlace */