提交 22ebba04 编写于 作者: J jp9000

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

上级 81e4211f
......@@ -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);
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册