summaryrefslogtreecommitdiffstats
path: root/macosx
diff options
context:
space:
mode:
authordynaflash <[email protected]>2010-02-12 16:55:02 +0000
committerdynaflash <[email protected]>2010-02-12 16:55:02 +0000
commit83474bd54c0faea2f8ffd7cca454491cb2350016 (patch)
tree3f9903add7f8b9272a13e16028f2f40ef93ef07b /macosx
parent4fa2b0c40515a1dba74abf226f38a1d2e69ad99c (diff)
MacGui: Queue edit rescan fix for multiple title sources
- Do not try to set the title popup to the original title number since its a single title rescan. git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@3115 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'macosx')
-rw-r--r--macosx/Controller.m6
1 files changed, 4 insertions, 2 deletions
diff --git a/macosx/Controller.m b/macosx/Controller.m
index 2b81d3148..013de2598 100644
--- a/macosx/Controller.m
+++ b/macosx/Controller.m
@@ -2760,8 +2760,10 @@ fWorkingCount = 0;
[self writeToActivityLog: "applyQueueSettingsToMainWindow: queue item found"];
}
/* Set title number and chapters */
- /* since the queue only scans a single title, we really don't need to pick a title */
- [fSrcTitlePopUp selectItemAtIndex: [[queueToApply objectForKey:@"TitleNumber"] intValue] - 1];
+ /* since the queue only scans a single title, its already been selected in showNewScan
+ so do not try to reset it here. However if we do decide to do full source scans on
+ a queue edit rescan, we would need it. So leaving in for now but commenting out. */
+ //[fSrcTitlePopUp selectItemAtIndex: [[queueToApply objectForKey:@"TitleNumber"] intValue] - 1];
[fSrcChapterStartPopUp selectItemAtIndex: [[queueToApply objectForKey:@"ChapterStart"] intValue] - 1];
[fSrcChapterEndPopUp selectItemAtIndex: [[queueToApply objectForKey:@"ChapterEnd"] intValue] - 1];