diff options
-rw-r--r-- | src/gui/Port.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gui/Port.cpp b/src/gui/Port.cpp index 330e051a..27d550fc 100644 --- a/src/gui/Port.cpp +++ b/src/gui/Port.cpp @@ -80,7 +80,7 @@ Port::Port(boost::shared_ptr<FlowCanvas::Module> module, _menu = NULL; ArtVpathDash* dash = this->dash(); - _rect->property_dash() = dash; + _rect.property_dash() = dash; set_border_width(dash ? 2.0 : 0.0); pm->signal_moved().connect(sigc::mem_fun(this, &Port::moved)); @@ -208,7 +208,7 @@ Port::property_changed(const URI& key, const Atom& value) set_toggled(true); } else if (key == uris.ctx_context) { ArtVpathDash* dash = this->dash(); - _rect->property_dash() = dash; + _rect.property_dash() = dash; set_border_width(dash ? 2.0 : 0.0); } else if (key == uris.lv2_name) { if (value.type() == Atom::STRING |