diff options
author | ritsuka <[email protected]> | 2015-01-23 16:29:24 +0000 |
---|---|---|
committer | ritsuka <[email protected]> | 2015-01-23 16:29:24 +0000 |
commit | 757115d8e91180d9a548aa57c20dc01f4542ee7a (patch) | |
tree | 2af93d15299bf24b49a8457476ca4ade04f0c802 /macosx/HBController.m | |
parent | 99afd6b79b54bdc3e05983ff86f03d59f46654ab (diff) |
MacGui: expose a isStream and a timeCode properties in HBTitle.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@6801 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'macosx/HBController.m')
-rw-r--r-- | macosx/HBController.m | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/macosx/HBController.m b/macosx/HBController.m index 68620c4dc..e9a884c98 100644 --- a/macosx/HBController.m +++ b/macosx/HBController.m @@ -834,7 +834,7 @@ } // If we are a stream type and a batch scan, grok the output file name from title->name upon title change - if ((title.hb_title->type == HB_STREAM_TYPE || title.hb_title->type == HB_FF_STREAM_TYPE) && self.core.titles.count > 1) + if (title.isStream && self.core.titles.count > 1) { // Change the source to read out the parent folder also fSrcDVD2Field.stringValue = [NSString stringWithFormat:@"%@/%@", self.browsedSourceDisplayName, title.name]; |