summaryrefslogtreecommitdiffstats
path: root/macosx/HBChapter.m
diff options
context:
space:
mode:
authorDamiano Galassi <[email protected]>2016-05-25 10:23:11 +0200
committerDamiano Galassi <[email protected]>2016-05-25 10:23:11 +0200
commita8aec0058298b75b59559c0bebd659852d7b32d9 (patch)
tree5b27c42a336ef898525d4c2ff0d32d29d5728bbf /macosx/HBChapter.m
parentf252ae60c2f2222be64125313e02cb92e3fb8412 (diff)
MacGui: copy the HBChapter index property when making a instance copy.
Diffstat (limited to 'macosx/HBChapter.m')
-rw-r--r--macosx/HBChapter.m3
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;
}