Make the route group submenu of the RouteTimeAxisView menu apply to the selection.
[ardour.git] / gtk2_ardour / editor_audiotrack.cc
index 143da8aa08c8c267f4f13d79ed265961a33330ac..df0b50cbbd682b6ebc0aea2a19a46674ea7b3908 100644 (file)
 using namespace ARDOUR;
 using namespace PBD;
 
-void
-Editor::set_show_waveforms_recording (bool yn)
-{
-       AudioTimeAxisView* atv;
-
-       if (_show_waveforms_recording != yn) {
-               _show_waveforms_recording = yn;
-               for (TrackViewList::iterator i = track_views.begin(); i != track_views.end(); ++i) {
-                       if ((atv = dynamic_cast<AudioTimeAxisView*>(*i)) != 0) {
-                               atv->set_show_waveforms_recording (yn);
-                       }
-               }
-       }
-}
-
 void
 Editor::start_updating_meters ()
 {