aboutsummaryrefslogtreecommitdiff
path: root/launcher/ui/pages/modplatform/legacy_ftb/Page.cpp
diff options
context:
space:
mode:
authorSefa Eyeoglu <contact@scrumplex.net>2023-06-28 08:47:53 +0200
committerGitHub <noreply@github.com>2023-06-28 08:47:53 +0200
commitfaec21d572549793293bf41127e384811f8a66dc (patch)
treee4e2c4b4c9c66cc3bac785c045339fe8d91634f4 /launcher/ui/pages/modplatform/legacy_ftb/Page.cpp
parent213f03351f6ee0a066c868f0efa0c6d85913585e (diff)
parented4dce2fb658de726435b06f1d8973b447279f1e (diff)
downloadPrismLauncher-faec21d572549793293bf41127e384811f8a66dc.tar.gz
PrismLauncher-faec21d572549793293bf41127e384811f8a66dc.tar.bz2
PrismLauncher-faec21d572549793293bf41127e384811f8a66dc.zip
Merge pull request #1266 from TheKodeToad/smol-tweaks
Diffstat (limited to 'launcher/ui/pages/modplatform/legacy_ftb/Page.cpp')
-rw-r--r--launcher/ui/pages/modplatform/legacy_ftb/Page.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/launcher/ui/pages/modplatform/legacy_ftb/Page.cpp b/launcher/ui/pages/modplatform/legacy_ftb/Page.cpp
index 98ab8799..b3f6261f 100644
--- a/launcher/ui/pages/modplatform/legacy_ftb/Page.cpp
+++ b/launcher/ui/pages/modplatform/legacy_ftb/Page.cpp
@@ -116,8 +116,8 @@ Page::Page(NewInstanceDialog* dialog, QWidget *parent)
connect(ui->thirdPartyPackList->selectionModel(), &QItemSelectionModel::currentChanged, this, &Page::onThirdPartyPackSelectionChanged);
connect(ui->privatePackList->selectionModel(), &QItemSelectionModel::currentChanged, this, &Page::onPrivatePackSelectionChanged);
- connect(ui->addPackBtn, &QPushButton::pressed, this, &Page::onAddPackClicked);
- connect(ui->removePackBtn, &QPushButton::pressed, this, &Page::onRemovePackClicked);
+ connect(ui->addPackBtn, &QPushButton::clicked, this, &Page::onAddPackClicked);
+ connect(ui->removePackBtn, &QPushButton::clicked, this, &Page::onRemovePackClicked);
connect(ui->tabWidget, &QTabWidget::currentChanged, this, &Page::onTabChanged);