mirror of
https://gitlab.com/mbunkus/mkvtoolnix.git
synced 2024-12-24 11:54:01 +00:00
GUI: mux: set title from Blu-ray disc library
But only if no title has been set yet. See also #2644.
This commit is contained in:
parent
3bf77af198
commit
0cf2975e4f
3
NEWS.md
3
NEWS.md
@ -8,6 +8,9 @@
|
||||
disc library meta data will be parsed, and the biggest thumbnail, if
|
||||
present, will be added as a new attachment with name `cover.jpg` (extension
|
||||
depends on thumbnail's extension). Implements #2644.
|
||||
* MKVToolNix GUI: multiplexer: when adding a playlist from a Blu-ray disc, the
|
||||
title from the disc library meta data will be set as the new file title if
|
||||
the disc library meta data contains one & no title has been set yet.
|
||||
|
||||
## Bug fixes
|
||||
|
||||
|
@ -1247,6 +1247,9 @@ Tab::addDataFromIdentifiedBlurayFiles(QList<SourceFilePtr> const &files) {
|
||||
if (!info)
|
||||
continue;
|
||||
|
||||
if (!info->m_title.empty())
|
||||
setTitleMaybe(Q(info->m_title));
|
||||
|
||||
addAttachmentsFromIdentifiedBluray(*info);
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user