From 17baf9362641f024440b61cecc176ee9096e1418 Mon Sep 17 00:00:00 2001 From: Robin Gareus Date: Thu, 17 Sep 2015 20:51:11 +0200 Subject: work around bug or feature of string_compose() string_compose("x%1x x%2x x%3x", "A", "", "C") -> "xAx xCx xx" and not -> "xAx xx xCx" --- gtk2_ardour/about.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'gtk2_ardour/about.cc') diff --git a/gtk2_ardour/about.cc b/gtk2_ardour/about.cc index 1288fc599c..051b13f575 100644 --- a/gtk2_ardour/about.cc +++ b/gtk2_ardour/about.cc @@ -605,7 +605,7 @@ About::About () #endif std::string codename = CODENAME; if (ARDOUR::Profile->get_mixbus() || ARDOUR::Profile->get_trx()) { - codename = ""; + codename = " "; } set_translator_credits (t); -- cgit v1.2.3