summaryrefslogtreecommitdiffstats
path: root/src/gui/Port.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/gui/Port.cpp')
-rw-r--r--src/gui/Port.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gui/Port.cpp b/src/gui/Port.cpp
index f70e8576..5744a84d 100644
--- a/src/gui/Port.cpp
+++ b/src/gui/Port.cpp
@@ -151,7 +151,7 @@ Port::on_value_changed(GVariant* value)
const Raul::Atom atom = _app.forge().make(float(g_variant_get_double(value)));
if (atom != model()->value()) {
Ingen::World* const world = _app.world();
- _app.interface()->set_property(model()->path(),
+ _app.interface()->set_property(model()->uri(),
world->uris().ingen_value,
atom);
}
@@ -175,7 +175,7 @@ Port::value_changed(const Atom& value)
void
Port::on_scale_point_activated(float f)
{
- _app.interface()->set_property(model()->path(),
+ _app.interface()->set_property(model()->uri(),
_app.world()->uris().ingen_value,
_app.world()->forge().make(f));
}