summaryrefslogtreecommitdiff
path: root/gtk2_ardour
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2008-09-19 19:49:13 +0000
committerDavid Robillard <d@drobilla.net>2008-09-19 19:49:13 +0000
commit68216b315ea443f12f41681a0075f6d5fe1c2f1c (patch)
tree538dff41d2a9b13d4df3c3c2d770b09f5eef08b7 /gtk2_ardour
parentb87ca000f86fdfc210c08056ae8e921236ea96c7 (diff)
Fix region dragging.
git-svn-id: svn://localhost/ardour2/branches/3.0@3770 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'gtk2_ardour')
-rw-r--r--gtk2_ardour/time_axis_view.cc6
1 files changed, 0 insertions, 6 deletions
diff --git a/gtk2_ardour/time_axis_view.cc b/gtk2_ardour/time_axis_view.cc
index 1f6d1f9da6..8e0463d769 100644
--- a/gtk2_ardour/time_axis_view.cc
+++ b/gtk2_ardour/time_axis_view.cc
@@ -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;