libardour now has CoreSelection object to manage selection status of Stripables and...
[ardour.git] / libs / surfaces / mackie / strip.cc
index e396af575cd299f0fa6485603d81ef2c0a9c7c01..9a570f8227dd31c3eacf5921260a07d85f076aa6 100644 (file)
@@ -380,8 +380,8 @@ Strip::notify_property_changed (const PropertyChange& what_changed)
 
        if (what_changed.contains (ARDOUR::Properties::selected)) {
                if (_stripable) {
-                       _surface->write (_select->set_state (_stripable->presentation_info().selected()));
-                       _surface->mcp().update_selected (_stripable, _stripable->presentation_info().selected());
+                       _surface->write (_select->set_state (_stripable->is_selected()));
+                       _surface->mcp().update_selected (_stripable, _stripable->is_selected());
                }
        }
 }