diff options
author | Sefa Eyeoglu <contact@scrumplex.net> | 2023-06-28 08:47:53 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-06-28 08:47:53 +0200 |
commit | faec21d572549793293bf41127e384811f8a66dc (patch) | |
tree | e4e2c4b4c9c66cc3bac785c045339fe8d91634f4 /launcher/ui/pages/modplatform/legacy_ftb/Page.cpp | |
parent | 213f03351f6ee0a066c868f0efa0c6d85913585e (diff) | |
parent | ed4dce2fb658de726435b06f1d8973b447279f1e (diff) | |
download | PrismLauncher-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.cpp | 4 |
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); |