mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-24 07:27:44 +01:00
fix VCA name/number
This commit is contained in:
parent
acaaa98bd0
commit
f5df3c291e
1 changed files with 1 additions and 1 deletions
|
|
@ -69,7 +69,7 @@ VCAManager::create_vca (uint32_t howmany, std::string const & name_template)
|
|||
string name = name_template;
|
||||
|
||||
if (name.find ("%n")) {
|
||||
string sn = PBD::to_string (n, std::dec);
|
||||
string sn = PBD::to_string (num, std::dec);
|
||||
replace_all (name, "%n", sn);
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue