Merge pull request #922 from AttorneyOnline/fix-mounted-themes

Fix themes not loading from mounted base folders
This commit is contained in:
in1tiate 2023-11-05 10:57:17 -06:00 committed by GitHub
commit a417307399
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -176,7 +176,7 @@ void AOOptionsDialog::updateValues()
for (const QString &base : bases) {
QStringList l_themes =
QDir(base + "themes").entryList(QDir::Dirs | QDir::NoDotAndDotDot);
QDir(base + "/themes").entryList(QDir::Dirs | QDir::NoDotAndDotDot);
// Resorts list to match numeric sorting found in Windows.
QCollator l_sorting;