From 0df81bae6b405618c9d04a89ebeb55e9de00bb9f Mon Sep 17 00:00:00 2001 From: Robin Davies Date: Mon, 3 Jul 2023 09:22:20 -0400 Subject: [PATCH] Wrong text for lables. --- src/PluginHost.cpp | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/src/PluginHost.cpp b/src/PluginHost.cpp index f462451..757e49a 100644 --- a/src/PluginHost.cpp +++ b/src/PluginHost.cpp @@ -663,10 +663,8 @@ Lv2PluginInfo::Lv2PluginInfo(PluginHost *lv2Host, LilvWorld *pWorld, const LilvP this->label_ = nodeAsString(label); if (label_.length() == 0) { - this->label_ = name; - } else { - std::cout << this->label_ << std::endl; - } + this->label_ = this->name_; + } AutoLilvNode author_name = (lilv_plugin_get_author_name(pPlugin));