diff options
| author | Jeremy Rimpo <jrim@rimpo.org> | 2023-10-27 20:53:53 -0500 |
|---|---|---|
| committer | Jeremy Rimpo <jrim@rimpo.org> | 2023-10-27 20:53:53 -0500 |
| commit | f8954806c3d8b3ff046730ec593638be4f1ce063 (patch) | |
| tree | 889635f7ca5a055aa31ac5c1b1dc9f44218b48ff | |
| parent | 8f6ba13fbc57d9f4793383a1402afd32923a9f04 (diff) | |
Explain overlay comments
| -rw-r--r-- | src/pluginlist.cpp | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/pluginlist.cpp b/src/pluginlist.cpp index 83ecd70b..a2371866 100644 --- a/src/pluginlist.cpp +++ b/src/pluginlist.cpp @@ -1103,6 +1103,9 @@ void PluginList::generatePluginIndexes() .arg((numESLs) % 4096, 3, 16, QChar('0')) .toUpper(); ++numESLs; + // This logic may still be used if overlay plugins are fixed to longer consume a + // load order slot + // //} else if (overridePluginsSupported && m_ESPs[i].isOverlayFlagged) { // m_ESPs[i].index = QString("XX"); // ++numSkipped; @@ -1340,6 +1343,9 @@ QVariant PluginList::tooltipData(const QModelIndex& modelIndex) const .arg(type); } + // This logic may still be used if overlay plugins are fixed to longer consume a load + // order slot + // // if (esp.isOverlayFlagged) { // toolTip += // "<br><br>" + tr("This plugin is flagged as an overlay plugin. It contains |
