mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-15 19:16:40 +01:00
No-op; coding style.
git-svn-id: svn://localhost/ardour2/branches/3.0@8910 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
parent
2304a51b85
commit
0cdf0433f7
1 changed files with 4 additions and 5 deletions
|
|
@ -411,11 +411,10 @@ AudioRegionView::region_resized (const PropertyChange& what_changed)
|
|||
list<std::pair<framepos_t, ArdourCanvas::Line*> >::iterator l;
|
||||
|
||||
for (l = feature_lines.begin(); l != feature_lines.end(); ++l) {
|
||||
if ((*l).first > _region->length()- 1){
|
||||
(*l).second->hide();
|
||||
}
|
||||
else {
|
||||
(*l).second->show();
|
||||
if (l->first > _region->length() - 1) {
|
||||
l->second->hide();
|
||||
} else {
|
||||
l->second->show();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue