summaryrefslogtreecommitdiff
path: root/gtk2_ardour/editor_region_list.cc
diff options
context:
space:
mode:
authorPaul Davis <paul@linuxaudiosystems.com>2008-11-09 22:08:18 +0000
committerPaul Davis <paul@linuxaudiosystems.com>2008-11-09 22:08:18 +0000
commit1082218dfadd636865c1b84fce1ca1d6c3dd23de (patch)
tree85a459a46a5753a8eb32ddc7c6035c85733c4893 /gtk2_ardour/editor_region_list.cc
parent6a67738db993971e62360e4d058b146957dafb1c (diff)
fix for handling DnD path data, plus lots of d-n-d drop debugging (to be cleaned up)
git-svn-id: svn://localhost/ardour2/branches/2.0-ongoing@4129 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'gtk2_ardour/editor_region_list.cc')
-rw-r--r--gtk2_ardour/editor_region_list.cc6
1 files changed, 0 insertions, 6 deletions
diff --git a/gtk2_ardour/editor_region_list.cc b/gtk2_ardour/editor_region_list.cc
index 666fadb790..b3bfbcc95f 100644
--- a/gtk2_ardour/editor_region_list.cc
+++ b/gtk2_ardour/editor_region_list.cc
@@ -386,8 +386,6 @@ Editor::region_list_display_button_press (GdkEventButton *ev)
int cellx;
int celly;
- // cerr << "Button press release, button = " << ev->button << endl;
-
if (region_list_display.get_path_at_pos ((int)ev->x, (int)ev->y, path, column, cellx, celly)) {
if ((iter = region_list_model->get_iter (path))) {
region = (*iter)[region_list_columns.region];
@@ -396,12 +394,10 @@ Editor::region_list_display_button_press (GdkEventButton *ev)
if (Keyboard::is_context_menu_event (ev)) {
show_region_list_display_context_menu (ev->button, ev->time);
- cerr << "\tcontext menu event, event handled\n";
return true;
}
if (region == 0) {
- cerr << "\tno region, event not handled\n";
return false;
}
@@ -414,7 +410,6 @@ Editor::region_list_display_button_press (GdkEventButton *ev)
if (!Keyboard::modifier_state_equals (ev->state, Keyboard::PrimaryModifier)) {
consider_auditioning (region);
}
- cerr << "\taudition, event handled\n";
return true;
break;
@@ -422,7 +417,6 @@ Editor::region_list_display_button_press (GdkEventButton *ev)
break;
}
- cerr << "\tnot handled\n";
return false;
}