diff options
| author | Jeremy Rimpo <jrim@rimpo.org> | 2023-10-04 00:55:16 -0500 |
|---|---|---|
| committer | Jeremy Rimpo <jrim@rimpo.org> | 2023-10-04 00:55:16 -0500 |
| commit | 81082d70e29eee8f4572c9df30d58ada10f8b269 (patch) | |
| tree | 4ec8e474c9c759f751df427845a8de646b19c193 | |
| parent | f8a3d5b86e4a6884953df6737a762c0f2e28aec3 (diff) | |
Skip index for override plugins
| -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(); |
