diff options
-rw-r--r-- | macosx/HBController.m | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/macosx/HBController.m b/macosx/HBController.m index 30fbc21d5..2085cbcb3 100644 --- a/macosx/HBController.m +++ b/macosx/HBController.m @@ -1100,7 +1100,6 @@ */ - (void)doAddToQueue { - [self.window HB_endEditing]; [fQueueController addJob:[self.job copy]]; } @@ -1109,6 +1108,7 @@ */ - (IBAction)addToQueue:(id)sender { + [self.window HB_endEditing]; [self runDestinationAlerts:self.job didEndSelector:@selector(overwriteAddToQueueAlertDone:returnCode:contextInfo:)]; } @@ -1157,6 +1157,7 @@ } else { + [self.window HB_endEditing]; [self runDestinationAlerts:self.job didEndSelector:@selector(overWriteAlertDone:returnCode:contextInfo:)]; } |