summaryrefslogtreecommitdiff
path: root/src/pluginlistproxy.cpp
diff options
context:
space:
mode:
authorJeremy Rimpo <jrim@rimpo.org>2023-10-08 04:17:07 -0500
committerJeremy Rimpo <jrim@rimpo.org>2023-10-08 04:17:07 -0500
commit028c8eafa982a5b126544f733880dd7711e0786a (patch)
tree576f522936c2efe121cc181729842ecd7931c174 /src/pluginlistproxy.cpp
parent48e8fdff0df30fa807e61d4df7b6116a9d190f2f (diff)
Additional overlay plugin support
* Add isOverlayFlagged to IPluginList * Further notate plugin list * Rename to match xEdit / Wrye / LOOT * Update counter
Diffstat (limited to 'src/pluginlistproxy.cpp')
-rw-r--r--src/pluginlistproxy.cpp5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/pluginlistproxy.cpp b/src/pluginlistproxy.cpp
index e5fa5e01..a056a38d 100644
--- a/src/pluginlistproxy.cpp
+++ b/src/pluginlistproxy.cpp
@@ -118,3 +118,8 @@ bool PluginListProxy::isLightFlagged(const QString& name) const
{
return m_Proxied->isLightFlagged(name);
}
+
+bool PluginListProxy::isOverlayFlagged(const QString& name) const
+{
+ return m_Proxied->isOverlayFlagged(name);
+}