summaryrefslogtreecommitdiff
path: root/src/mainwindow.cpp
diff options
context:
space:
mode:
authorSilarn <jrim@rimpo.org>2018-04-08 14:56:46 -0500
committerSilarn <jrim@rimpo.org>2018-04-08 14:56:46 -0500
commit208eaccbf7f1fc0441861d55c68c4b66e5c7d387 (patch)
tree3724ce893df14c2c8643417a3ea86c627d4465c0 /src/mainwindow.cpp
parent0f8852f487cb1f8b993141042da4196db965e038 (diff)
Updates to allow a full plugin data refresh in certain circumstances
Diffstat (limited to 'src/mainwindow.cpp')
-rw-r--r--src/mainwindow.cpp5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/mainwindow.cpp b/src/mainwindow.cpp
index 48a09718..85e96993 100644
--- a/src/mainwindow.cpp
+++ b/src/mainwindow.cpp
@@ -1980,7 +1980,6 @@ void MainWindow::directory_refreshed()
refreshDataTree();
updateProblemsButton();
statusBar()->hide();
- m_OrganizerCore.refreshESPList();
}
void MainWindow::modorder_changed()
@@ -4811,7 +4810,7 @@ void MainWindow::on_bossButton_clicked()
}
m_IntegratedBrowser.openUrl(url);
}
- m_OrganizerCore.refreshESPList();
+ m_OrganizerCore.refreshESPList(false);
m_OrganizerCore.savePluginList();
}
}
@@ -4888,7 +4887,7 @@ void MainWindow::on_restoreButton_clicked()
QMessageBox::critical(this, tr("Restore failed"),
tr("Failed to restore the backup. Errorcode: %1").arg(windowsErrorString(::GetLastError())));
}
- m_OrganizerCore.refreshESPList();
+ m_OrganizerCore.refreshESPList(true);
}
}