From e3c3c2dcc4c31e831ef17687cbf02ba1519f7450 Mon Sep 17 00:00:00 2001 From: Tannin Date: Sun, 15 May 2016 13:06:31 +0200 Subject: fixed: after running an external application the plugin list was potentially not updated correctly --- src/pluginlist.cpp | 2 ++ 1 file changed, 2 insertions(+) (limited to 'src/pluginlist.cpp') diff --git a/src/pluginlist.cpp b/src/pluginlist.cpp index 1978c749..002c17e1 100644 --- a/src/pluginlist.cpp +++ b/src/pluginlist.cpp @@ -535,6 +535,8 @@ void PluginList::setState(const QString &name, PluginStates state) auto iter = m_ESPsByName.find(name.toLower()); if (iter != m_ESPsByName.end()) { m_ESPs[iter->second].m_Enabled = state == IPluginList::STATE_ACTIVE; + } else { + qWarning("plugin %s not found", qPrintable(name)); } } -- cgit v1.3.1