diff options
author | Kenneth Chew <kenneth.c0@protonmail.com> | 2022-04-05 13:47:27 -0400 |
---|---|---|
committer | Kenneth Chew <kenneth.c0@protonmail.com> | 2022-04-15 15:37:07 -0400 |
commit | 7aeccbb6b0e5f0af01c98d4dc5eb322888a45900 (patch) | |
tree | 9a21242e072499a8b14d8673b208f87352518653 | |
parent | 8406c7f431009d7e81b0b0e9e1daddcaf82d8324 (diff) | |
download | PrismLauncher-7aeccbb6b0e5f0af01c98d4dc5eb322888a45900.tar.gz PrismLauncher-7aeccbb6b0e5f0af01c98d4dc5eb322888a45900.tar.bz2 PrismLauncher-7aeccbb6b0e5f0af01c98d4dc5eb322888a45900.zip |
Fix build on Qt 5.6
-rw-r--r-- | launcher/ui/pages/modplatform/VanillaPage.cpp | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/launcher/ui/pages/modplatform/VanillaPage.cpp b/launcher/ui/pages/modplatform/VanillaPage.cpp index 959e695c..a99f107e 100644 --- a/launcher/ui/pages/modplatform/VanillaPage.cpp +++ b/launcher/ui/pages/modplatform/VanillaPage.cpp @@ -61,7 +61,10 @@ VanillaPage::VanillaPage(NewInstanceDialog *dialog, QWidget *parent) connect(ui->refreshBtn, &QPushButton::clicked, this, &VanillaPage::refresh); connect(ui->loaderVersionList, &VersionSelectWidget::selectedVersionChanged, this, &VanillaPage::setSelectedLoaderVersion); - connect(ui->loaderBtnGroup, &QButtonGroup::idToggled, this, &VanillaPage::loaderFilterChanged); + connect(ui->noneFilter, &QRadioButton::toggled, this, &VanillaPage::loaderFilterChanged); + connect(ui->forgeFilter, &QRadioButton::toggled, this, &VanillaPage::loaderFilterChanged); + connect(ui->fabricFilter, &QRadioButton::toggled, this, &VanillaPage::loaderFilterChanged); + connect(ui->liteLoaderFilter, &QRadioButton::toggled, this, &VanillaPage::loaderFilterChanged); connect(ui->loaderRefreshBtn, &QPushButton::clicked, this, &VanillaPage::loaderRefresh); } |