Remember to check for Linux VST Effects (#6751)

Remember to also check .so files and not only .dll
This commit is contained in:
Babakinha
2023-09-11 11:57:36 -03:00
committed by GitHub
parent a8d765f8d5
commit 296d5736c8

View File

@@ -82,7 +82,11 @@ void VstSubPluginFeatures::addPluginsFromDir( QStringList* filenames, QString pa
}
}
QStringList dlls = QDir( ConfigManager::inst()->vstDir() + path ).
entryList( QStringList() << "*.dll",
entryList( QStringList() << "*.dll"
#ifdef LMMS_BUILD_LINUX
<< "*.so"
#endif
,
QDir::Files, QDir::Name );
for( int i = 0; i < dlls.size(); i++ )
{