[Hotfix] Revert change in configure_dialog (#4865)
This commit is contained in:
parent
216fc0b546
commit
76aec4d675
|
@ -72,10 +72,11 @@ void ConfigureDialog::PopulateSelectionList() {
|
||||||
ui->selectorList->clear();
|
ui->selectorList->clear();
|
||||||
|
|
||||||
const std::array<std::pair<QString, QStringList>, 4> items{
|
const std::array<std::pair<QString, QStringList>, 4> items{
|
||||||
{{tr("General"), {tr("General"), tr("Web"), tr("Debug"), tr("UI")}},
|
{{tr("General"),
|
||||||
{tr("System"), {tr("System"), tr("Audio"), tr("Camera")}},
|
{QT_TR_NOOP("General"), QT_TR_NOOP("Web"), QT_TR_NOOP("Debug"), QT_TR_NOOP("UI")}},
|
||||||
{tr("Graphics"), {tr("Graphics")}},
|
{tr("System"), {QT_TR_NOOP("System"), QT_TR_NOOP("Audio"), QT_TR_NOOP("Camera")}},
|
||||||
{tr("Controls"), {tr("Input"), tr("Hotkeys")}}}};
|
{tr("Graphics"), {QT_TR_NOOP("Graphics")}},
|
||||||
|
{tr("Controls"), {QT_TR_NOOP("Input"), QT_TR_NOOP("Hotkeys")}}}};
|
||||||
|
|
||||||
for (const auto& entry : items) {
|
for (const auto& entry : items) {
|
||||||
auto* const item = new QListWidgetItem(entry.first);
|
auto* const item = new QListWidgetItem(entry.first);
|
||||||
|
|
Reference in New Issue