asset browser: store paths in a case insensitive manner
This commit is contained in:
@@ -16,7 +16,7 @@ QStandardItem* TreeManager::addItem(QString path)
|
||||
|
||||
while (!p.isEmpty())
|
||||
{
|
||||
QString elt = p.takeFirst();
|
||||
QString elt = p.takeFirst().toLower();
|
||||
path_remainder = path_remainder + elt;
|
||||
|
||||
QStandardItem* child = find(path_remainder);
|
||||
|
||||
Reference in New Issue
Block a user