diff options
author | Damiano Galassi <[email protected]> | 2016-05-25 10:23:11 +0200 |
---|---|---|
committer | Damiano Galassi <[email protected]> | 2016-05-25 10:23:11 +0200 |
commit | a8aec0058298b75b59559c0bebd659852d7b32d9 (patch) | |
tree | 5b27c42a336ef898525d4c2ff0d32d29d5728bbf /macosx/HBChapter.m | |
parent | f252ae60c2f2222be64125313e02cb92e3fb8412 (diff) |
MacGui: copy the HBChapter index property when making a instance copy.
Diffstat (limited to 'macosx/HBChapter.m')
-rw-r--r-- | macosx/HBChapter.m | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/macosx/HBChapter.m b/macosx/HBChapter.m index c5f0ab081..b3badef0c 100644 --- a/macosx/HBChapter.m +++ b/macosx/HBChapter.m @@ -55,8 +55,9 @@ { copy->_title = [_title copy]; copy->_duration = [_duration copy]; + copy->_index = _index; } - + return copy; } |