diff options
-rw-r--r-- | macosx/Controller.mm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/macosx/Controller.mm b/macosx/Controller.mm index b899585df..cec1fd19f 100644 --- a/macosx/Controller.mm +++ b/macosx/Controller.mm @@ -1160,7 +1160,7 @@ static NSString * ChooseSourceIdentifier = @"Choose Source It else // User clicked Cancel in browse window { /* if we have a title loaded up */ - if ([[fSrcDVD2Field stringValue] length] > 0) + if ([[fSrcDVD2Field stringValue] length] > 0 && SuccessfulScan) { [self enableUI: YES]; } @@ -1276,7 +1276,7 @@ static NSString * ChooseSourceIdentifier = @"Choose Source It else { /* if we have a title loaded up */ - if ([[fSrcDVD2Field stringValue] length] > 0) + if ([[fSrcDVD2Field stringValue] length] > 0 && SuccessfulScan) { [self enableUI: YES]; } |