diff options
| author | isanae <14251494+isanae@users.noreply.github.com> | 2019-11-25 05:31:28 -0500 |
|---|---|---|
| committer | isanae <14251494+isanae@users.noreply.github.com> | 2019-11-25 05:31:28 -0500 |
| commit | 78ee23220f4b755515dfb391aeb3fbdb6d48f0d6 (patch) | |
| tree | 69f1fbfea5aab18fb650196e4c76cf7e95ad0423 /src/pluginlist.cpp | |
| parent | 765c9667de25547929f8ff58e3eab7bd3aeb3cbf (diff) | |
bumped to 2.2.2alpha7
use the broom icon for dirty plugins
better handling of failing to spawn loot
Diffstat (limited to 'src/pluginlist.cpp')
| -rw-r--r-- | src/pluginlist.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/pluginlist.cpp b/src/pluginlist.cpp index e91d820d..3f2f4018 100644 --- a/src/pluginlist.cpp +++ b/src/pluginlist.cpp @@ -1214,10 +1214,14 @@ QVariant PluginList::iconData(const QModelIndex &modelIndex) const result.append(":/MO/gui/archive_conflict_neutral");
}
- if (esp.isLightFlagged && !m_ESPs[index].isLight) {
+ if (esp.isLightFlagged && !esp.isLight) {
result.append(":/MO/gui/awaiting");
}
+ if (info && !info->loot.dirty.empty()) {
+ result.append(":/MO/gui/edit_clear");
+ }
+
return result;
}
@@ -1250,10 +1254,6 @@ bool PluginList::hasInfo(const ESPInfo& esp, const AdditionalInfo* info) const if (!info->loot.messages.empty()) {
return true;
}
-
- if (!info->loot.dirty.empty()) {
- return true;
- }
}
return false;
|
