mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-24 15:37:48 +01:00
[Summary] Bug Fix: track name pattern contained a space not supposed.
This commit is contained in:
parent
4ff012fd60
commit
ecdd95707b
1 changed files with 2 additions and 2 deletions
|
|
@ -110,8 +110,8 @@ using namespace std;
|
|||
using namespace ARDOUR;
|
||||
using namespace PBD;
|
||||
|
||||
const char * Session::default_trx_track_name_pattern = "Track "; // add track number to the pattern
|
||||
const char * Session::default_ardour_track_name_pattern = "Audio "; // add track number to the pattern
|
||||
const char * Session::default_trx_track_name_pattern = "Track"; // add track number to the pattern
|
||||
const char * Session::default_ardour_track_name_pattern = "Audio "; // add track number to the pattern (SHOULD NOT IT BE "ARDOUR"!!!!)
|
||||
|
||||
// seconds should be added afte the region exceeds end marker
|
||||
const uint32_t session_end_shift = 15;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue