mirror of
https://github.com/Ardour/ardour.git
synced 2026-01-30 17:03:06 +01:00
Fix error message (include plugin ID)
This commit is contained in:
parent
83225886a1
commit
e1b2a24221
1 changed files with 2 additions and 2 deletions
|
|
@ -1848,10 +1848,10 @@ void
|
|||
LV2Plugin::set_property(uint32_t key, const Variant& value)
|
||||
{
|
||||
if (_patch_port_in_index == (uint32_t)-1) {
|
||||
error << string_compose (_("LV2<1>: set_property called with unset patch_port_in_index"), name ()) << endmsg;
|
||||
error << string_compose (_("LV2<%1>: set_property called with unset patch_port_in_index"), name ()) << endmsg;
|
||||
return;
|
||||
} else if (value.type() == Variant::NOTHING) {
|
||||
error << string_compose (_("LV2<1>: set_property called with void value"), name ()) << endmsg;
|
||||
error << string_compose (_("LV2<%1>: set_property called with void value"), name ()) << endmsg;
|
||||
return;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue