diff options
author | benlake <[email protected]> | 2007-01-10 11:25:18 +0000 |
---|---|---|
committer | benlake <[email protected]> | 2007-01-10 11:25:18 +0000 |
commit | 568717a5e64c6cd04e0ebea6c3937730760fd613 (patch) | |
tree | e1eaedfa2963eb6d43cfaadb1d0fa43ac8854315 | |
parent | 4f30af3b89bad3c8286f6c789433e15232af1052 (diff) |
- OSX GUI: the [Enable Queue] checkbox was not disabled by default. A user could click Cancel on the Open DVD menu, enable the queue, click Add to Queue and crash HandBrake. Also, it annoyed me being the only thing enabled :)
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@103 b64f7644-9d1e-0410-96f1-a4d463321fa5
-rw-r--r-- | macosx/Controller.mm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/macosx/Controller.mm b/macosx/Controller.mm index bd23c888d..d4242ace8 100644 --- a/macosx/Controller.mm +++ b/macosx/Controller.mm @@ -440,7 +440,7 @@ static int FormatSettings[3][4] = fVidQualityMatrix, fVidGrayscaleCheck, fSubField, fSubPopUp, fAudLang1Field, fAudLang1PopUp, fAudLang2Field, fAudLang2PopUp, fAudRateField, fAudRatePopUp, fAudBitrateField, - fAudBitratePopUp, fPictureButton }; + fAudBitratePopUp, fPictureButton, fQueueCheck }; for( unsigned i = 0; i < sizeof( controls ) / sizeof( NSControl * ); i++ ) |