From f7e10d0fe81d445bcf8e388f2d6f7ffc6461df4f Mon Sep 17 00:00:00 2001 From: Robin Gareus Date: Tue, 21 Jul 2015 21:49:34 +0200 Subject: [PATCH] VST plugin title fix #6467 --- libs/ardour/vst_plugin.cc | 3 +++ 1 file changed, 3 insertions(+) diff --git a/libs/ardour/vst_plugin.cc b/libs/ardour/vst_plugin.cc index 189dd93b5c..daf096e80e 100644 --- a/libs/ardour/vst_plugin.cc +++ b/libs/ardour/vst_plugin.cc @@ -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; } -- 2.30.2