Discussion Thread:
http://forum.cockos.com/showthread.php?t=114052
This is a problem with v4.31, but probably for app previous versions also.
When I save a project, the names of the track view screensets are not quoted in the RPP project file. This means that the correct name is not recalled when the project is reloaded.
Here's an example:
I create two track views, and name them "All Drums" and "All Guitars". Those names are displayed correctly in the screensets window.
Those screensets look like this in the RPP file:
Code:
<SCREENSET
<SET
POS 0
NAME All Drums
MASK -157
CURSORPOS 0.00000000
SCROLLX 0 0
TRACKSCALE 14.71250000
SCROLLY 0
VZOOM 2
>
<SET
POS 1
NAME All Guitars
MASK -157
CURSORPOS 0.00000000
SCROLLX 0 0
TRACKSCALE 14.71250000
SCROLLY 0
VZOOM 2
>
>
When I reload the RPP file, both of the track views are now named "All".
The names of the track views will load correctly if I manually edit the RPP file to quote the names, like this:
Code:
<SCREENSET
<SET
POS 0
NAME "All Drums"
MASK -157
CURSORPOS 0.00000000
SCROLLX 0 0
TRACKSCALE 14.71250000
SCROLLY 0
VZOOM 2
>
<SET
POS 1
NAME "All Guitars"
MASK -157
CURSORPOS 0.00000000
SCROLLX 0 0
TRACKSCALE 14.71250000
SCROLLY 0
VZOOM 2
>
>
(However, that manual edit is lost when I re-save the RPP file ...)
The names of selection sets are quoted correctly in the RPP file:
Code:
SELECTIONSET 0 "All MIDI Items"
SELECTIONSET 1 "All Other Items"
so it looks like Reaper just needs to be updated to quote the names of the track views also.