diff options
Diffstat (limited to 'src/jack.c')
-rw-r--r-- | src/jack.c | 9 |
1 files changed, 7 insertions, 2 deletions
@@ -232,12 +232,17 @@ jack_process_cb(jack_nframes_t nframes, void* data) if (jalv->has_ui) { // Forward event to UI - jalv_write_event(jalv, jalv->plugin_to_ui, p, size, type, body); + jalv_write_event(jalv->plugin_to_ui, + p, + jalv->urids.atom_eventTransfer, + size, + type, + body); } } } else if (send_ui_updates && port->flow == FLOW_OUTPUT && port->type == TYPE_CONTROL) { - jalv_write_control(jalv, jalv->plugin_to_ui, p, port->control); + jalv_write_control(jalv->plugin_to_ui, p, port->control); } } |