VST plugin title fix #6467

This commit is contained in:
Robin Gareus 2015-07-21 21:49:34 +02:00
parent e2f30624a7
commit f7e10d0fe8

View File

@ -614,6 +614,9 @@ VSTPlugin::unique_id () const
const char *
VSTPlugin::name () const
{
if (!_info->name.empty ()) {
return _info->name.c_str();
}
return _handle->name;
}