aboutsummaryrefslogtreecommitdiff
path: root/launcher/ui/pages/modplatform/modrinth
diff options
context:
space:
mode:
authorflow <flowlnlnln@gmail.com>2022-11-10 08:08:44 -0800
committerGitHub <noreply@github.com>2022-11-10 08:08:44 -0800
commit46a8e18841f398a3735e7ca4310c317e3dacc474 (patch)
tree1ff73f35a35f8d8707481c5c29adc7b0d4e9481e /launcher/ui/pages/modplatform/modrinth
parent6c53e68a523c1b9b9d19014a975958788c484108 (diff)
parent99ed0b6c2ca67733a574a13cd215ec5c46c4dcfa (diff)
downloadPrismLauncher-46a8e18841f398a3735e7ca4310c317e3dacc474.tar.gz
PrismLauncher-46a8e18841f398a3735e7ca4310c317e3dacc474.tar.bz2
PrismLauncher-46a8e18841f398a3735e7ca4310c317e3dacc474.zip
Merge pull request #367 from TheKodeToad/linkjumping
fix https://github.com/PrismLauncher/PrismLauncher/issues/363
Diffstat (limited to 'launcher/ui/pages/modplatform/modrinth')
-rw-r--r--launcher/ui/pages/modplatform/modrinth/ModrinthModPage.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/launcher/ui/pages/modplatform/modrinth/ModrinthModPage.cpp b/launcher/ui/pages/modplatform/modrinth/ModrinthModPage.cpp
index 62e417c8..c531ea90 100644
--- a/launcher/ui/pages/modplatform/modrinth/ModrinthModPage.cpp
+++ b/launcher/ui/pages/modplatform/modrinth/ModrinthModPage.cpp
@@ -53,7 +53,7 @@ ModrinthModPage::ModrinthModPage(ModDownloadDialog* dialog, BaseInstance* instan
ui->sortByBox->addItem(tr("Sort by Last Updated"));
ui->sortByBox->addItem(tr("Sort by Newest"));
- // sometimes Qt just ignores virtual slots and doesn't work as intended it seems,
+ // sometimes Qt just ignores virtual slots and doesn't work as intended it seems,
// so it's best not to connect them in the parent's constructor...
connect(ui->sortByBox, SIGNAL(currentIndexChanged(int)), this, SLOT(triggerSearch()));
connect(ui->packView->selectionModel(), &QItemSelectionModel::currentChanged, this, &ModrinthModPage::onSelectionChanged);