mirror of
https://github.com/opentx/opentx.git
synced 2025-07-16 12:55:12 +03:00
Fixes #2002: Companion audio tracks not alphabetically sorted
This commit is contained in:
parent
92ceaa948c
commit
471f68beb9
3 changed files with 11 additions and 1 deletions
|
@ -1020,3 +1020,8 @@ QSet<QString> getFilesSet(const QString &path, const QStringList &filter, int ma
|
|||
}
|
||||
return result;
|
||||
}
|
||||
|
||||
bool caseInsensitiveLessThan(const QString &s1, const QString &s2)
|
||||
{
|
||||
return s1.toLower() < s2.toLower();
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue