From beee5d09b87cdde814eec5ff189e2ec32621af35 Mon Sep 17 00:00:00 2001 From: Robin Gareus Date: Sun, 14 Oct 2012 16:17:33 +0000 Subject: [PATCH] fix matching TC color assignment (rev13264) git-svn-id: svn://localhost/ardour2/branches/3.0@13269 d708f5d6-7413-0410-9779-e7cbd77b26cf --- gtk2_ardour/ardour_ui.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gtk2_ardour/ardour_ui.cc b/gtk2_ardour/ardour_ui.cc index 04ed4dbbd4..3b9c4799f6 100644 --- a/gtk2_ardour/ardour_ui.cc +++ b/gtk2_ardour/ardour_ui.cc @@ -1116,7 +1116,7 @@ ARDOUR_UI::update_timecode_format () } snprintf (buf, sizeof (buf), S_("Timecode|TC: %sfps"), - matching ? X_("red") : X_("green"), + matching ? X_("green") : X_("red"), Timecode::timecode_format_name (_session->config.get_timecode_format()).c_str()); } else { snprintf (buf, sizeof (buf), "TC: n/a");