Remove some debug code.

git-svn-id: svn://localhost/ardour2/branches/3.0@5225 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
Carl Hetherington 2009-06-20 14:13:45 +00:00
parent ece809f1db
commit 6b20256ad4

View File

@ -121,12 +121,10 @@ bool
EditorGroupTabs::on_button_press_event (GdkEventButton* ev)
{
int32_t y = 0;
cout << y << "\n";
Editor::TrackViewList::iterator i = _editor->track_views.begin();
while (y < ev->y && i != _editor->track_views.end()) {
y += (*i)->effective_height ();
if (y < ev->y) {
cout << "skip past " << (*i)->name() << "\n";
++i;
}
}