aboutsummaryrefslogtreecommitdiff
path: root/libs/plugin_python/src/proxy
diff options
context:
space:
mode:
Diffstat (limited to 'libs/plugin_python/src/proxy')
-rw-r--r--libs/plugin_python/src/proxy/proxypython.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/libs/plugin_python/src/proxy/proxypython.cpp b/libs/plugin_python/src/proxy/proxypython.cpp
index 6a1430d..0037991 100644
--- a/libs/plugin_python/src/proxy/proxypython.cpp
+++ b/libs/plugin_python/src/proxy/proxypython.cpp
@@ -293,7 +293,8 @@ QStringList ProxyPython::pluginList(const QDir& pluginPath) const
}
else if (info.isDir() && QDir(info.absoluteFilePath()).exists("__init__.py")) {
// Skip Windows-only directory plugins that use ctypes.windll etc.
- if (baseName == "crashlogtools") {
+ if (baseName == "crashlogtools" ||
+ baseName.compare("rootbuilder", Qt::CaseInsensitive) == 0) {
continue;
}
result.append(name);