summaryrefslogtreecommitdiffstats
path: root/macosx/HBController.m
diff options
context:
space:
mode:
Diffstat (limited to 'macosx/HBController.m')
-rw-r--r--macosx/HBController.m6
1 files changed, 3 insertions, 3 deletions
diff --git a/macosx/HBController.m b/macosx/HBController.m
index 51b7c503f..1259cc652 100644
--- a/macosx/HBController.m
+++ b/macosx/HBController.m
@@ -298,7 +298,7 @@
[toolbarItem setLabel: @"Stop"];
[toolbarItem setPaletteLabel: @"Stop"];
[toolbarItem setToolTip: @"Stop Encoding"];
- return (queueState != HBStateScanning);
+ return YES;
}
if (action == @selector(pause:))
{
@@ -1054,10 +1054,10 @@
/**
* Rescans the chosen queue item back into the main window
*/
-- (void)rescanJobToMainWindow:(HBJob *)queueItem
+- (void)openJob:(HBJob *)job
{
// Set the browsedSourceDisplayName for showNewScan
- self.jobFromQueue = queueItem;
+ self.jobFromQueue = job;
self.browsedSourceDisplayName = self.jobFromQueue.fileURL.lastPathComponent;
[self performScan:self.jobFromQueue.fileURL scanTitleNum:self.jobFromQueue.titleIdx];