From: dynaflash Date: Tue, 28 Aug 2007 16:54:38 +0000 (+0000) Subject: MacGui: fix bug where cancelling the browse window for source didnt enable Window... X-Git-Tag: 0.9.1~126 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=5031016ee32755e9da9e7ad59f1823150f3f1f71;p=handbrake MacGui: fix bug where cancelling the browse window for source didnt enable Window > Queue properly git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@883 b64f7644-9d1e-0410-96f1-a4d463321fa5 --- diff --git a/macosx/Controller.mm b/macosx/Controller.mm index 33c6e25fa..18fce38a4 100644 --- a/macosx/Controller.mm +++ b/macosx/Controller.mm @@ -1199,13 +1199,13 @@ list = hb_get_titles( fHandle ); /* use the outlets to the main menu bar to determine what to enable and disable */ [fMenuOpenSource setEnabled: YES]; + [fMenuQueuePanelShow setEnabled: YES]; /* if we have a title loaded up */ if ([[fSrcDVD2Field stringValue] length] > 0) { [fMenuAddToQueue setEnabled: YES]; [fMenuStartEncode setEnabled: YES]; [fMenuPicturePanelShow setEnabled: YES]; - [fMenuQueuePanelShow setEnabled: YES]; [self enableUI: YES]; } }