summaryrefslogtreecommitdiff
path: root/src/modlist.cpp
diff options
context:
space:
mode:
authorSilarn <jrim@rimpo.org>2019-07-04 23:14:15 -0500
committerSilarn <jrim@rimpo.org>2019-07-04 23:14:15 -0500
commit0596a7199094cc8d103dfe2cfdcd20046c04e85d (patch)
tree8abee4ef3e03d3864c6a9f175822c448d73ec3f2 /src/modlist.cpp
parentdfd34bf9c0ad055e76c1b6f272c21eb0d79536ce (diff)
Various fixes and updates to the tutorial system
* Fix problem with main tutorial advancing past mod activation * Add various missing overlays for new and updated features * Restore BSA tab * Fix problem with positioning action button overlays (requires uibase)
Diffstat (limited to 'src/modlist.cpp')
-rw-r--r--src/modlist.cpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/modlist.cpp b/src/modlist.cpp
index e2398cd6..7b71355c 100644
--- a/src/modlist.cpp
+++ b/src/modlist.cpp
@@ -561,6 +561,7 @@ bool ModList::setData(const QModelIndex &index, const QVariant &value, int role)
m_Modified = true;
m_LastCheck.restart();
emit modlistChanged(index, role);
+ emit tutorialModlistUpdate();
}
result = true;
emit dataChanged(index, index);
@@ -596,6 +597,7 @@ bool ModList::setData(const QModelIndex &index, const QVariant &value, int role)
if (ok) {
info->setNexusID(newID);
emit modlistChanged(index, role);
+ emit tutorialModlistUpdate();
result = true;
} else {
result = false;
@@ -1375,6 +1377,7 @@ bool ModList::toggleSelection(QAbstractItemView *itemView)
m_Profile->setModsEnabled(modsToEnable, modsToDisable);
emit modlistChanged(dirtyMods, 0);
+ emit tutorialModlistUpdate();
m_Modified = true;
m_LastCheck.restart();