summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authordynaflash <[email protected]>2007-08-28 16:54:38 +0000
committerdynaflash <[email protected]>2007-08-28 16:54:38 +0000
commit5031016ee32755e9da9e7ad59f1823150f3f1f71 (patch)
treeebc5d7a8fbb5e9ea0cf6997ad5d0b30b74b14c86
parent939c34e5b55b546e607f635cee7cc6fa51e0951d (diff)
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
-rw-r--r--macosx/Controller.mm2
1 files changed, 1 insertions, 1 deletions
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];
}
}