mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-15 19:16:40 +01:00
many changes associated with rationalizing selection flow
This commit is contained in:
parent
2047ee527c
commit
da7d7f9502
33 changed files with 272 additions and 199 deletions
|
|
@ -97,3 +97,19 @@ AxisView::gui_object_state()
|
|||
{
|
||||
return *ARDOUR_UI::instance()->gui_object_state;
|
||||
}
|
||||
|
||||
void
|
||||
AxisView::set_selected (bool yn)
|
||||
{
|
||||
if (selected() == yn) {
|
||||
return;
|
||||
}
|
||||
|
||||
Selectable::set_selected (yn);
|
||||
|
||||
boost::shared_ptr<Stripable> s = stripable ();
|
||||
|
||||
if (s) {
|
||||
s->presentation_info().set_selected (yn);
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue