No-op; coding style.

git-svn-id: svn://localhost/ardour2/branches/3.0@8910 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
Carl Hetherington 2011-02-20 17:30:02 +00:00
parent 2304a51b85
commit 0cdf0433f7
1 changed files with 4 additions and 5 deletions

View File

@ -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();
}
}
}