when an automation/region gain line is hidden, so are its points

This commit is contained in:
Paul Davis 2014-03-05 14:33:06 -05:00
parent 142439b9a8
commit 6605b2a542
1 changed files with 3 additions and 0 deletions

View File

@ -171,6 +171,9 @@ AutomationLine::update_visibility ()
} else {
line->hide ();
for (vector<ControlPoint*>::iterator i = control_points.begin(); i != control_points.end(); ++i) {
(*i)->hide ();
}
}
}