From 5a6aafff8dda9dddce479a2ad86edb933c9688c3 Mon Sep 17 00:00:00 2001 From: David Robillard Date: Sat, 9 Feb 2013 20:28:40 +0000 Subject: Use default float protocol for UI float controls (fix #885). git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@5051 a436a847-0d15-0410-975c-d299462d15a1 --- src/client/PluginUI.cpp | 15 +++++++++++---- 1 file changed, 11 insertions(+), 4 deletions(-) (limited to 'src/client') diff --git a/src/client/PluginUI.cpp b/src/client/PluginUI.cpp index 01e1cb77..9bd3a195 100644 --- a/src/client/PluginUI.cpp +++ b/src/client/PluginUI.cpp @@ -53,14 +53,21 @@ lv2_ui_write(SuilController controller, // float (special case, always 0) if (format == 0) { - assert(buffer_size == 4); - if (*(const float*)buffer == port->value().get()) - return; // do nothing (handle stupid plugin UIs that feed back) + if (buffer_size != 4) { + ui->world()->log().error( + Raul::fmt("%1% UI wrote corrupt float with bad size\n") + % ui->block()->plugin()->uri().c_str()); + return; + } + const float value = *(const float*)buffer; + if (value == port->value().get()) { + return; // Ignore feedback + } ui->world()->interface()->set_property( port->uri(), uris.ingen_value, - ui->world()->forge().make(*(const float*)buffer)); + ui->world()->forge().make(value)); } else if (format == uris.atom_eventTransfer.id) { const LV2_Atom* atom = (const LV2_Atom*)buffer; -- cgit v1.2.1