diff options
Diffstat (limited to 'src/jalv.c')
-rw-r--r-- | src/jalv.c | 11 |
1 files changed, 6 insertions, 5 deletions
@@ -326,7 +326,8 @@ jalv_set_control(Jalv* jalv, const void* body) { if (control->type == PORT && type == jalv->forge.Float) { - jalv->process.controls_buf[control->index] = *(const float*)body; + const float value = *(const float*)body; + jalv_write_control(jalv->process.ui_to_plugin, control->id.index, value); } else if (control->type == PROPERTY && jalv->process.control_in != UINT32_MAX) { LV2_Atom_Forge_Frame frame; @@ -334,7 +335,7 @@ jalv_set_control(Jalv* jalv, lv2_atom_forge_object(&jalv->forge, &frame, 0, jalv->urids.patch_Set); lv2_atom_forge_key(&jalv->forge, jalv->urids.patch_property); - lv2_atom_forge_urid(&jalv->forge, control->property); + lv2_atom_forge_urid(&jalv->forge, control->id.property); lv2_atom_forge_key(&jalv->forge, jalv->urids.patch_value); lv2_atom_forge_atom(&jalv->forge, size, type); lv2_atom_forge_write(&jalv->forge, body, size); @@ -363,7 +364,7 @@ void jalv_ui_instantiate(Jalv* jalv, const char* native_ui_type, void* parent) { #if USE_SUIL - LilvInstance* const instance = jalv->process.instance; + const LilvInstance* const instance = jalv->process.instance; jalv->ui_host = suil_host_new(jalv_send_to_plugin, jalv_ui_port_index, NULL, NULL); @@ -637,8 +638,8 @@ jalv_init_features(Jalv* const jalv) static void jalv_init_ui_settings(Jalv* const jalv) { - JalvOptions* const opts = &jalv->opts; - JalvSettings* const settings = &jalv->settings; + const JalvOptions* const opts = &jalv->opts; + JalvSettings* const settings = &jalv->settings; if (!settings->ring_size) { /* The UI ring is fed by plugin output ports (usually one), and the UI |