mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-12-22 13:18:28 +00:00
Fix header case
This commit is contained in:
parent
7403fd2f88
commit
9a473a4954
@ -92,7 +92,7 @@ QMap<QString, QString> GuiLyXFiles::getFiles()
|
||||
available_languages_.insert(li.key(), li.value());
|
||||
localization = cat;
|
||||
int sc = relpath.indexOf('/', s + 1);
|
||||
cat = (sc == -1) ? QString() : relpath.mid(s + 1, sc - s - 1);
|
||||
cat = (sc == -1) ? qt_("General") : relpath.mid(s + 1, sc - s - 1);
|
||||
s = sc;
|
||||
}
|
||||
if (s != -1) {
|
||||
|
Loading…
Reference in New Issue
Block a user