aboutsummaryrefslogtreecommitdiff
path: root/launcher/ui/dialogs
diff options
context:
space:
mode:
authorTheKodeToad <TheKodeToad@proton.me>2023-08-02 20:23:09 +0100
committerTheKodeToad <TheKodeToad@proton.me>2023-08-02 20:23:30 +0100
commit40c614b3a579dd7435f917cf60289712190a379b (patch)
treea6a855a53f824461deb948f5ae5cb411a1fa00bf /launcher/ui/dialogs
parent8705e88e91959f7058902dd058d63bfd36f73cde (diff)
downloadPrismLauncher-40c614b3a579dd7435f917cf60289712190a379b.tar.gz
PrismLauncher-40c614b3a579dd7435f917cf60289712190a379b.tar.bz2
PrismLauncher-40c614b3a579dd7435f917cf60289712190a379b.zip
Pressed -> Clicked (doh)
Signed-off-by: TheKodeToad <TheKodeToad@proton.me>
Diffstat (limited to 'launcher/ui/dialogs')
-rw-r--r--launcher/ui/dialogs/InstallLoaderDialog.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/launcher/ui/dialogs/InstallLoaderDialog.cpp b/launcher/ui/dialogs/InstallLoaderDialog.cpp
index bab5b835..0b65882e 100644
--- a/launcher/ui/dialogs/InstallLoaderDialog.cpp
+++ b/launcher/ui/dialogs/InstallLoaderDialog.cpp
@@ -98,7 +98,7 @@ InstallLoaderDialog::InstallLoaderDialog(std::shared_ptr<PackProfile> profile, c
auto buttonLayout = new QHBoxLayout(this);
auto refreshButton = new QPushButton(tr("&Refresh"), this);
- connect(refreshButton, &QPushButton::pressed, this, [this] { pageCast(container->selectedPage())->loadList(); });
+ connect(refreshButton, &QPushButton::clicked, this, [this] { pageCast(container->selectedPage())->loadList(); });
buttonLayout->addWidget(refreshButton);
buttons->setOrientation(Qt::Horizontal);