diff options
| author | Petr Mrázek <peterix@users.noreply.github.com> | 2021-06-19 12:50:21 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-06-19 12:50:21 +0200 |
| commit | 5f8d07c0092b6cc44f81104a3d7f9e7e49d9df5d (patch) | |
| tree | 8fe8110d91c112d5596610df8045801e23e7212b /application/pages/instance/ModFolderPage.cpp | |
| parent | 25955c08179a9077ca7eef89d0f72eb7803bec08 (diff) | |
| parent | b246fc171e1e8c747b0aedd6b0b47b923cc8cfb7 (diff) | |
| download | PrismLauncher-5f8d07c0092b6cc44f81104a3d7f9e7e49d9df5d.tar.gz PrismLauncher-5f8d07c0092b6cc44f81104a3d7f9e7e49d9df5d.tar.bz2 PrismLauncher-5f8d07c0092b6cc44f81104a3d7f9e7e49d9df5d.zip | |
Merge pull request #3875 from jamierocks/feature/gh-3033
GH-3033 Add filtering for version components
Diffstat (limited to 'application/pages/instance/ModFolderPage.cpp')
| -rw-r--r-- | application/pages/instance/ModFolderPage.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/application/pages/instance/ModFolderPage.cpp b/application/pages/instance/ModFolderPage.cpp index c3d6483a..98f20e77 100644 --- a/application/pages/instance/ModFolderPage.cpp +++ b/application/pages/instance/ModFolderPage.cpp @@ -163,7 +163,7 @@ ModFolderPage::ModFolderPage( auto smodel = ui->modTreeView->selectionModel(); connect(smodel, &QItemSelectionModel::currentChanged, this, &ModFolderPage::modCurrent); - connect(ui->filterEdit, &QLineEdit::textChanged, this, &ModFolderPage::on_filterTextChanged ); + connect(ui->filterEdit, &QLineEdit::textChanged, this, &ModFolderPage::on_filterTextChanged); connect(m_inst, &BaseInstance::runningStatusChanged, this, &ModFolderPage::on_RunningState_changed); } |
