]> granicus.if.org Git - handbrake/commitdiff
MacGui: Remove Preference introduced in rev 620 to make users enable 64bit mp4 option.
authordynaflash <dynaflashtech@gmail.com>
Thu, 14 Jun 2007 16:59:44 +0000 (16:59 +0000)
committerdynaflash <dynaflashtech@gmail.com>
Thu, 14 Jun 2007 16:59:44 +0000 (16:59 +0000)
The option is available at all times as per jbrjake.

git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@621 b64f7644-9d1e-0410-96f1-a4d463321fa5

macosx/Controller.mm
macosx/English.lproj/Preferences.nib/keyedobjects.nib

index 8046dabe6759ffe7332ed2e79f3c93e384a538b7..0addaf37567ec37f56919996716d3c0808ab66ba 100644 (file)
@@ -847,7 +847,7 @@ return registrationDictionary;
                /* We set the largeFileSize (64 bit formatting) variable here to allow for > 4gb files based on the format being
                mpeg4 and the checkbox being checked 
                *Note: this will break compatibility with some target devices like iPod, etc.!!!!*/
-               if ([[NSUserDefaults standardUserDefaults] boolForKey:@"AllowLargeFiles"] > 0 && [fDstMpgLargeFileCheck state] == NSOnState)
+               if ([fDstMpgLargeFileCheck state] == NSOnState)
                {
                        job->largeFileSize = 1;
                }
@@ -1296,10 +1296,7 @@ return registrationDictionary;
                        /* We enable the create chapters checkbox here since we are .mp4*/
                        [fCreateChapterMarkers setEnabled: YES];
                        /* We show the Large File (64 bit formatting) checkbox since we are .mp4 */
-                       if ([[NSUserDefaults standardUserDefaults] boolForKey:@"AllowLargeFiles"] > 0)
-                       {
                        [fDstMpgLargeFileCheck setHidden: NO];
-                       }
                        break;
         case 1: 
             ext = "avi";
index a8c5f96299dbd625e9149839012abc2ac96b9cdf..79d30633d3d16906c8d24d352d30fb9530f42c23 100644 (file)
Binary files a/macosx/English.lproj/Preferences.nib/keyedobjects.nib and b/macosx/English.lproj/Preferences.nib/keyedobjects.nib differ