summaryrefslogtreecommitdiff
path: root/gtk2_ardour/route_ui.cc
diff options
context:
space:
mode:
authorBen Loftis <ben@harrisonconsoles.com>2014-08-28 14:25:19 -0500
committerBen Loftis <ben@harrisonconsoles.com>2014-08-28 14:25:19 -0500
commit730656863465250e8ed9f277cd5dd1409e9e46ac (patch)
treeed6115b2a2eff93b22f28ae5ce4f44731218a07d /gtk2_ardour/route_ui.cc
parent61c11157c0a8eabfeb6b3f1d01372b88342770ce (diff)
More fixes to ArdourButton actions.
Optionally allow events to fallthrough to parents, in particular for the DnDVBox case. Also allow the number_label to operate as a track selector.
Diffstat (limited to 'gtk2_ardour/route_ui.cc')
-rw-r--r--gtk2_ardour/route_ui.cc4
1 files changed, 0 insertions, 4 deletions
diff --git a/gtk2_ardour/route_ui.cc b/gtk2_ardour/route_ui.cc
index 38fd851999..0b0d1a6642 100644
--- a/gtk2_ardour/route_ui.cc
+++ b/gtk2_ardour/route_ui.cc
@@ -772,28 +772,24 @@ RouteUI::update_monitoring_display ()
bool
RouteUI::monitor_input_press(GdkEventButton*)
{
-printf("RouteUI monitor_input_press\n");
return false;
}
bool
RouteUI::monitor_input_release(GdkEventButton* ev)
{
-printf("RouteUI monitor_input_release\n");
return monitor_release (ev, MonitorInput);
}
bool
RouteUI::monitor_disk_press (GdkEventButton*)
{
-printf("RouteUI monitor_disk_press\n");
return false;
}
bool
RouteUI::monitor_disk_release (GdkEventButton* ev)
{
- printf("RouteUI monitor_disk_release\n");
monitor_release (ev, MonitorDisk);
}