diff options
Diffstat (limited to 'src/libs/gui/Port.cpp')
-rw-r--r-- | src/libs/gui/Port.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/libs/gui/Port.cpp b/src/libs/gui/Port.cpp index fd35ff90..031c74c5 100644 --- a/src/libs/gui/Port.cpp +++ b/src/libs/gui/Port.cpp @@ -126,7 +126,8 @@ Port::set_control(float value, bool signal) if (_port_model->type() == DataType::CONTROL) { App::instance().engine()->set_port_value(_port_model->path(), Atom(value)); } else if (_port_model->type() == DataType::EVENT) { - cout << "EVENT CONTROL" << endl; + App::instance().engine()->set_port_value(_port_model->path(), + Atom("<http://example.org/ev#BangEvent>", 0, NULL)); } } |