UI: Use case-insensitive sort for "show all" services

This commit is contained in:
jp9000 2020-07-30 21:19:24 -07:00
parent 81e4211f64
commit 22ebba0454
2 changed files with 2 additions and 2 deletions

View File

@ -642,7 +642,7 @@ void AutoConfigStreamPage::LoadServices(bool showAll)
}
if (showAll)
names.sort();
names.sort(Qt::CaseInsensitive);
for (QString &name : names)
ui->service->addItem(name);

View File

@ -267,7 +267,7 @@ void OBSBasicSettings::LoadServices(bool showAll)
}
if (showAll)
names.sort();
names.sort(Qt::CaseInsensitive);
for (QString &name : names)
ui->service->addItem(name);