From 5a19a4fb4a892188c551359e6601a7c9ca215be1 Mon Sep 17 00:00:00 2001 From: Ben Loftis Date: Mon, 14 Feb 2022 21:22:23 -0600 Subject: [PATCH] tempo ruler: remove unused _name_flag for tempo markers --- gtk2_ardour/marker.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gtk2_ardour/marker.cc b/gtk2_ardour/marker.cc index 757bcc9391..33c2d3a911 100644 --- a/gtk2_ardour/marker.cc +++ b/gtk2_ardour/marker.cc @@ -292,7 +292,7 @@ ArdourMarker::ArdourMarker (PublicEditor& ed, ArdourCanvas::Item& parent, guint3 group->name = string_compose ("Marker::group for %1", annotation); #endif - if ((type != RegionCue) && (type != Meter)) { + if ((type != RegionCue) && (type != Meter) && (type != Tempo)) { _name_flag = new ArdourCanvas::Rectangle (group); #ifdef CANVAS_DEBUG _name_flag->name = string_compose ("Marker::_name_flag for %1", annotation);