From 28328ea36adc7150605a0dfa9842e66b88485c32 Mon Sep 17 00:00:00 2001 From: Ben Loftis Date: Wed, 31 Jul 2019 11:14:38 -0500 Subject: [PATCH] prefer lowercase and no spaces, since this will appear in the filename. --- libs/ardour/session.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libs/ardour/session.cc b/libs/ardour/session.cc index 3d6c0055d7..6fbf02e384 100644 --- a/libs/ardour/session.cc +++ b/libs/ardour/session.cc @@ -6182,7 +6182,7 @@ Session::write_one_track (Track& track, samplepos_t start, samplepos_t end, goto out; } - legal_playlist_name = "(BOUNCE) " + legalize_for_path (playlist->name()); + legal_playlist_name = "(bounce)" + legalize_for_path (playlist->name()); for (uint32_t chan_n = 0; chan_n < diskstream_channels.n(data_type); ++chan_n) {