diff --git a/UI/window-basic-auto-config.cpp b/UI/window-basic-auto-config.cpp index 31d48c444..e72b772e3 100644 --- a/UI/window-basic-auto-config.cpp +++ b/UI/window-basic-auto-config.cpp @@ -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); diff --git a/UI/window-basic-settings-stream.cpp b/UI/window-basic-settings-stream.cpp index 7b9131c39..77b0b192d 100644 --- a/UI/window-basic-settings-stream.cpp +++ b/UI/window-basic-settings-stream.cpp @@ -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);