From 18048747b61017c04399a29fc39d97b652b101e6 Mon Sep 17 00:00:00 2001 From: Paul Davis Date: Mon, 8 Apr 2013 19:47:54 -0400 Subject: [PATCH] fix up marker text color --- 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 56ab234b28..246f1f4087 100644 --- a/gtk2_ardour/marker.cc +++ b/gtk2_ardour/marker.cc @@ -271,7 +271,7 @@ Marker::Marker (PublicEditor& ed, ArdourCanvas::Group& parent, guint32 rgba, con _name_item = new ArdourCanvas::Text (group); _name_item->set_font_description (name_font); - _name_item->set_color (0); + _name_item->set_color (RGBA_TO_UINT (0,0,0,255)); #ifdef CANVAS_DEBUG _name_item->name = string_compose ("Marker::_name_item for %1", annotation);