13
0

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"
This commit is contained in:
Robin Gareus 2015-09-17 20:51:11 +02:00
parent e44212321e
commit 17baf93626

View File

@ -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);