Fix region dragging.
authorDavid Robillard <d@drobilla.net>
Fri, 19 Sep 2008 19:49:13 +0000 (19:49 +0000)
committerDavid Robillard <d@drobilla.net>
Fri, 19 Sep 2008 19:49:13 +0000 (19:49 +0000)
git-svn-id: svn://localhost/ardour2/branches/3.0@3770 d708f5d6-7413-0410-9779-e7cbd77b26cf

gtk2_ardour/time_axis_view.cc

index 1f6d1f9da667cfbf6e8d13e5bc8692722fe73b5e..8e0463d769467ccd2ec5204500450173c9fb5b3a 100644 (file)
@@ -1181,15 +1181,9 @@ TimeAxisView::color_handler ()
 TimeAxisView*
 TimeAxisView::covers_y_position (double y)
 {
-       if (y_position < 0) {
-               abort ();
-       }
-
        if (hidden()) {
                return 0;
        }
-       
-       cerr << name() << " check for " << y << " within " << y_position << " and + " << height << endl;
 
        if (y_position <= y && y < (y_position + height)) {
                return this;