From 94455c2dabea121274d6190f1f0845731f0e3800 Mon Sep 17 00:00:00 2001 From: Jeremy Rimpo Date: Sat, 9 Sep 2023 04:37:03 -0500 Subject: Add 'None' LoadOrderMechanism which disables managed plugins - Primary plugins are still marked as loaded --- src/pluginlist.h | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) (limited to 'src/pluginlist.h') 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 archives, - bool lightSupported, bool overrideSupported); + ESPInfo(const QString& name, bool enabled, bool forceDisabled, + const QString& originName, const QString& fullPath, bool hasIni, + std::set archives, bool lightSupported, bool overrideSupported); QString name; QString fullPath; bool enabled; bool forceEnabled; + bool forceDisabled; int priority; QString index; int loadOrder; -- cgit v1.3.1