diff options
author | TheKodeToad <TheKodeToad@proton.me> | 2023-06-25 10:36:54 +0100 |
---|---|---|
committer | TheKodeToad <TheKodeToad@proton.me> | 2023-06-25 10:36:54 +0100 |
commit | 603ed220151345f44a43e14538ea449bae843958 (patch) | |
tree | b19f80912b445e6c0850e79f31237bfbd94edea3 /launcher/ui/pages/modplatform/legacy_ftb/Page.cpp | |
parent | 5eb71fc6a96690e3d9a658f383b0937446ec3f9e (diff) | |
download | PrismLauncher-603ed220151345f44a43e14538ea449bae843958.tar.gz PrismLauncher-603ed220151345f44a43e14538ea449bae843958.tar.bz2 PrismLauncher-603ed220151345f44a43e14538ea449bae843958.zip |
Replace accidental usages of QAbstractButton::pressed
This signal is not usually what you want, and creates an inconsistent experience.
Signed-off-by: TheKodeToad <TheKodeToad@proton.me>
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); |