diff options
| author | Jeremy Rimpo <jeremy.rimpo@servermonkey.com> | 2023-09-09 04:37:03 -0500 |
|---|---|---|
| committer | Jeremy Rimpo <jeremy.rimpo@servermonkey.com> | 2023-09-09 04:37:03 -0500 |
| commit | 94455c2dabea121274d6190f1f0845731f0e3800 (patch) | |
| tree | 49afec6006e5d2cb0c700933edfec098bdb7a3ba /src/pluginlist.h | |
| parent | 58cc25f3227dd82011c809b50bbedbeec039ccc4 (diff) | |
Add 'None' LoadOrderMechanism which disables managed plugins
- Primary plugins are still marked as loaded
Diffstat (limited to 'src/pluginlist.h')
| -rw-r--r-- | src/pluginlist.h | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/src/pluginlist.h b/src/pluginlist.h index 56f9e1a9..0c53fc25 100644 --- a/src/pluginlist.h +++ b/src/pluginlist.h @@ -313,14 +313,15 @@ signals: private: struct ESPInfo { - ESPInfo(const QString& name, bool enabled, const QString& originName, - const QString& fullPath, bool hasIni, std::set<QString> archives, - bool lightSupported, bool overrideSupported); + ESPInfo(const QString& name, bool enabled, bool forceDisabled, + const QString& originName, const QString& fullPath, bool hasIni, + std::set<QString> archives, bool lightSupported, bool overrideSupported); QString name; QString fullPath; bool enabled; bool forceEnabled; + bool forceDisabled; int priority; QString index; int loadOrder; |
