Yay! That's great news!
As a workaround, I started adding an _Overlay group to all of my scenes. I put stuff (backgrounds, safe title frames, operator notes) into the overlay group, then add scripts to OnPreviewRender and OnOnline to show the Overlay on my preview canvas, but prevent them from playing to air (so I don't have to remember to turn them off).
'Show Overlay (Add to OnPreviewRender)
dim overlay as xpBaseObject
if Self.GetObjectByName("_OVERLAY", overlay)
overlay.visible = 1
end if
--
'Hide Overlay (Add to OnOnline)
dim overlay as xpBaseObject
if Self.GetObjectByName("_OVERLAY", overlay)
overlay.visible = 0
end if
#XPression