diff options
| author | LostDragonist <lost.dragonist@gmail.com> | 2019-03-23 19:26:16 -0500 |
|---|---|---|
| committer | LostDragonist <lost.dragonist@gmail.com> | 2019-03-23 19:26:16 -0500 |
| commit | ff7fd68c0b8f861ac294a3876485c59de94a67cd (patch) | |
| tree | 04a27875d0e29a641b912ae7a1147b1c01491341 /src | |
| parent | 5f8c95e78ee4a0a3beebd28e4f10a8897908703b (diff) | |
Connect diagnosisUpdate and updateProblemsButton so the notification button is updated properly
Diffstat (limited to 'src')
| -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 8fe786ba..76101be1 100644 --- a/src/mainwindow.cpp +++ b/src/mainwindow.cpp @@ -371,6 +371,8 @@ MainWindow::MainWindow(QSettings &initSettings ui->apiRequests->setPalette(palette); ui->apiRequests->setVisible(!m_OrganizerCore.settings().hideAPICounter()); + connect(&m_PluginContainer, SIGNAL(diagnosisUpdate()), this, SLOT(updateProblemsButton())); + connect(ui->savegameList, SIGNAL(itemEntered(QListWidgetItem*)), this, SLOT(saveSelectionChanged(QListWidgetItem*))); connect(ui->modList, SIGNAL(dropModeUpdate(bool)), m_OrganizerCore.modList(), SLOT(dropModeUpdate(bool))); |
