diff options
author | Damiano Galassi <[email protected]> | 2016-01-30 12:01:14 +0100 |
---|---|---|
committer | Damiano Galassi <[email protected]> | 2016-01-30 12:01:14 +0100 |
commit | 6a00e46d7888cd49b6a8671784788129d8139835 (patch) | |
tree | 0d2708785c0e3e7dd1c7d2b41d612ee625a611a9 /macosx/HBSubtitlesTrack.m | |
parent | ce4f5d77ad2d65440c7a7b247bcf2d5b2be7cf6e (diff) |
MacGui: fix HBSubtitlesTrack copy, it missed the container ivar.
Diffstat (limited to 'macosx/HBSubtitlesTrack.m')
-rw-r--r-- | macosx/HBSubtitlesTrack.m | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/macosx/HBSubtitlesTrack.m b/macosx/HBSubtitlesTrack.m index dfa69869e..cc365d411 100644 --- a/macosx/HBSubtitlesTrack.m +++ b/macosx/HBSubtitlesTrack.m @@ -316,6 +316,7 @@ NSString *keySubTrackSrtFileURL = @"keySubTrackSrtFileURL"; { copy->_sourceTrackIdx = _sourceTrackIdx; copy->_type = _type; + copy->_container = _container; copy->_forcedOnly = _forcedOnly; copy->_burnedIn = _burnedIn; |