mirror of
https://github.com/obsproject/obs-studio.git
synced 2026-03-14 12:36:27 -04:00
UI: Use case-insensitive sort for "show all" services
This commit is contained in:
@@ -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);
|
||||
|
||||
Reference in New Issue
Block a user