diff options
| author | isanae <14251494+isanae@users.noreply.github.com> | 2021-02-24 05:46:48 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-02-24 05:46:48 -0500 |
| commit | 4040dc12b745091c9704d4e065256dad3381d05e (patch) | |
| tree | bf243911f6f05c63feebb19006e49194f4347542 /src/mainwindow.cpp | |
| parent | 8decb9df6831a2b953b122cd509361eb1539e84e (diff) | |
| parent | d4fc7c3de156743b3e23a566f518583a96467ade (diff) | |
Merge pull request #1436 from isanae/tutorial-fix
Fix tutorial stuck on mod info dialog
Diffstat (limited to 'src/mainwindow.cpp')
| -rw-r--r-- | src/mainwindow.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/mainwindow.cpp b/src/mainwindow.cpp index 9f1ae7b6..64ed6781 100644 --- a/src/mainwindow.cpp +++ b/src/mainwindow.cpp @@ -512,6 +512,8 @@ void MainWindow::setupModList() connect(&ui->modList->actions(), &ModListViewActions::overwriteCleared, [=]() { scheduleCheckForProblems(); }); connect(&ui->modList->actions(), &ModListViewActions::originModified, this, &MainWindow::originModified); + connect(&ui->modList->actions(), &ModListViewActions::modInfoDisplayed, this, &MainWindow::modInfoDisplayed); + connect(m_OrganizerCore.modList(), &ModList::modPrioritiesChanged, [&]() { m_ArchiveListWriter.write(); }); } |
