mirror of
https://github.com/zealdocs/zeal.git
synced 2026-08-29 08:34:50 +08:00
registry: Exclude all keywords containing 'dashtoc'
This commit is contained in:
@@ -158,8 +158,9 @@ Docset::Docset(const QString &path) :
|
||||
|
||||
if (plist.contains(InfoPlist::DashDocSetFamily)) {
|
||||
const QString kw = plist[InfoPlist::DashDocSetFamily].toString();
|
||||
if (kw != QLatin1String("dashtoc") && kw != QLatin1String("unsorteddashtoc"))
|
||||
if (!kw.contains(QLatin1String("dashtoc"))) {
|
||||
m_keywords << kw;
|
||||
}
|
||||
}
|
||||
|
||||
m_keywords.removeDuplicates();
|
||||
|
||||
Reference in New Issue
Block a user