From a705938ffdc8aa2422ea936b0e2d1f629e6f9d11 Mon Sep 17 00:00:00 2001 From: Jeremy Rimpo Date: Mon, 2 Oct 2023 18:30:03 -0500 Subject: Allow moving force enabled plugins - Mirrors LOOT functionality - Rename 'forceEnabled' to 'forceLoaded' to better reflect the difference --- src/pluginlist.h | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) (limited to 'src/pluginlist.h') diff --git a/src/pluginlist.h b/src/pluginlist.h index 0c53fc25..db32d911 100644 --- a/src/pluginlist.h +++ b/src/pluginlist.h @@ -313,13 +313,15 @@ signals: private: struct ESPInfo { - ESPInfo(const QString& name, bool enabled, bool forceDisabled, - const QString& originName, const QString& fullPath, bool hasIni, - std::set archives, bool lightSupported, bool overrideSupported); + ESPInfo(const QString& name, bool forceLoaded, bool forceEnabled, + bool forceDisabled, const QString& originName, const QString& fullPath, + bool hasIni, std::set archives, bool lightSupported, + bool overrideSupported); QString name; QString fullPath; bool enabled; + bool forceLoaded; bool forceEnabled; bool forceDisabled; int priority; -- cgit v1.3.1