diff options
| author | Jeremy Rimpo <jrim@rimpo.org> | 2023-10-02 18:30:03 -0500 |
|---|---|---|
| committer | Jeremy Rimpo <jrim@rimpo.org> | 2023-10-02 18:30:03 -0500 |
| commit | a705938ffdc8aa2422ea936b0e2d1f629e6f9d11 (patch) | |
| tree | 689a5effeff12baea641cbab979d1ddd4a900bb9 /src/pluginlist.h | |
| parent | 62e8ddc9ca1bb8bfd4c912068932563a7438bca8 (diff) | |
Allow moving force enabled plugins
- Mirrors LOOT functionality
- Rename 'forceEnabled' to 'forceLoaded' to better reflect the difference
Diffstat (limited to 'src/pluginlist.h')
| -rw-r--r-- | src/pluginlist.h | 8 |
1 files changed, 5 insertions, 3 deletions
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<QString> 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<QString> archives, bool lightSupported, + bool overrideSupported); QString name; QString fullPath; bool enabled; + bool forceLoaded; bool forceEnabled; bool forceDisabled; int priority; |
