diff options
| author | Jeremy Rimpo <jeremy.rimpo@servermonkey.com> | 2023-10-04 02:45:21 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-10-04 02:45:21 -0500 |
| commit | 7e50a26c6ae4d330406550017be0669868d8f51a (patch) | |
| tree | 4ec8e474c9c759f751df427845a8de646b19c193 /src/pluginlist.cpp | |
| parent | f8a3d5b86e4a6884953df6737a762c0f2e28aec3 (diff) | |
| parent | 81082d70e29eee8f4572c9df30d58ada10f8b269 (diff) | |
Merge pull request #1896 from ModOrganizer2/override_index_fix
Skip index for override plugins
Diffstat (limited to 'src/pluginlist.cpp')
| -rw-r--r-- | src/pluginlist.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/pluginlist.cpp b/src/pluginlist.cpp index 1a780584..7b732af8 100644 --- a/src/pluginlist.cpp +++ b/src/pluginlist.cpp @@ -1095,6 +1095,7 @@ void PluginList::generatePluginIndexes() ++numESLs; } else if (overridePluginsSupported && m_ESPs[i].isOverrideFlagged) { m_ESPs[i].index = QString(""); + ++numSkipped; } else { m_ESPs[i].index = QString("%1").arg(l - numESLs - numSkipped, 2, 16, QChar('0')).toUpper(); |
