aboutsummaryrefslogtreecommitdiffstats
path: root/src/jalv_qt.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/jalv_qt.cpp')
-rw-r--r--src/jalv_qt.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/jalv_qt.cpp b/src/jalv_qt.cpp
index 9b3b145..7d99118 100644
--- a/src/jalv_qt.cpp
+++ b/src/jalv_qt.cpp
@@ -2,6 +2,7 @@
// SPDX-License-Identifier: ISC
#include "jalv_qt.hpp"
+#include "comm.h"
#include "frontend.h"
#include "jalv.h"
#include "nodes.h"
@@ -499,7 +500,7 @@ Control::dialChanged(int)
const float value = getValue();
_label->setText(getValueLabel(value));
- _jalv->process.controls_buf[_port->index] = value;
+ jalv_write_control(_jalv->process.ui_to_plugin, _port->index, value);
}
namespace {