diff options
author | dynaflash <[email protected]> | 2008-01-23 14:33:25 +0000 |
---|---|---|
committer | dynaflash <[email protected]> | 2008-01-23 14:33:25 +0000 |
commit | 5cb6da2bd49cb0ef605f085eb6a16ec0debda1b8 (patch) | |
tree | 307b35112b6805db1fdd9cd58162463f35d41e73 | |
parent | 3550271c134a5d85cd14d3731b269374d4554251 (diff) |
MacGui: Fix bug where switching titles with vfr on changes the framerate from 29.97 which is required by vfr.
- Note: mostly cosmetic to the gui as libhb is pretty much ignoring the framerate specified by the gui when vfr is on anyway. But the gui should reflect as much as possible what libhb is doing behind the scenes.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@1233 b64f7644-9d1e-0410-96f1-a4d463321fa5
-rw-r--r-- | macosx/Controller.mm | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/macosx/Controller.mm b/macosx/Controller.mm index 9860f3e34..f4c474fe1 100644 --- a/macosx/Controller.mm +++ b/macosx/Controller.mm @@ -2072,10 +2072,6 @@ static NSString * ChooseSourceIdentifier = @"Choose Source It AutoCropLeft = job->crop[2]; AutoCropRight = job->crop[3]; - /* we run the picture size values through - calculatePictureSizing to get all picture size - information*/ - [self calculatePictureSizing: NULL]; /* Run Through encoderPopUpChanged to see if there needs to be any pic value modifications based on encoder settings */ //[self encoderPopUpChanged: NULL]; @@ -2160,6 +2156,9 @@ static NSString * ChooseSourceIdentifier = @"Choose Source It } [fVidRatePopUp selectItemAtIndex: 0]; + /* we run the picture size values through calculatePictureSizing to get all picture setting information*/ + [self calculatePictureSizing: NULL]; + /* lets call tableViewSelected to make sure that any preset we have selected is enforced after a title change */ [self selectPreset:NULL]; |