GUI: use correct options for linking to next/previous segment UIDs

Fixes #1511.
This commit is contained in:
Moritz Bunkus 2015-11-14 12:39:47 +01:00
parent af0195e97e
commit 25c535f897
2 changed files with 7 additions and 2 deletions

View File

@ -1,3 +1,8 @@
2015-11-14 Moritz Bunkus <moritz@bunkus.org>
* MKVToolNix GUI: bug fix: the options for linking to the
next/previous segment UID were wrong. Fixes #1511.
2015-11-10 Moritz Bunkus <moritz@bunkus.org>
* mkvmerge: enhancement: added JSON as an output format for file

View File

@ -441,8 +441,8 @@ MuxConfig::buildMkvmergeOptions()
add(Q("--title"), m_title, !m_title.isEmpty() || hasSourceFileWithTitle());
add(Q("--segment-uid"), m_segmentUIDs);
add(Q("--previous-segment-uid"), m_previousSegmentUID);
add(Q("--next-segment-uid"), m_nextSegmentUID);
add(Q("--link-to-previous"), m_previousSegmentUID);
add(Q("--link-to-next"), m_nextSegmentUID);
add(Q("--segmentinfo"), m_segmentInfo);
if (!m_chapters.isEmpty()) {