UI: Use case-insensitive sort for "show all" services
This commit is contained in:
parent
81e4211f64
commit
22ebba0454
@ -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);
|
||||
|
@ -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);
|
||||
|
Loading…
x
Reference in New Issue
Block a user