From c184d1fbe6bde9a85ca50e20cc3ae3fa8622f7e3 Mon Sep 17 00:00:00 2001 From: Paul Davis Date: Sat, 30 Mar 2013 09:19:37 -0400 Subject: [PATCH] add tooltip for channel edit button --- gtk2_ardour/midi_time_axis.cc | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/gtk2_ardour/midi_time_axis.cc b/gtk2_ardour/midi_time_axis.cc index 3b8e4932fb..09f7b1b113 100644 --- a/gtk2_ardour/midi_time_axis.cc +++ b/gtk2_ardour/midi_time_axis.cc @@ -269,8 +269,11 @@ MidiTimeAxisView::set_route (boost::shared_ptr rt) _channel_status_box.set_spacing (6); _channel_selector_button.set_label (_("Chns")); - - /* fixed sized labels to prevent silly nonsense */ + ARDOUR_UI::instance()->set_tip (_channel_selector_button, _("Click to edit channel settings")); + + /* fixed sized labels to prevent silly nonsense (though obviously, + * they cause their own too) + */ _playback_channel_status.set_size_request (65, -1); _capture_channel_status.set_size_request (60, -1);