DialogSeekbar – Movie Title?!

So I’m trying to code the dialogseekbar and dialogfullscreeninfo and can’t for the life of me figure out what xml the movie title and time controls are in.

I’m certain they should be in DialogSeekbar but this is what my code looks like..

Code:
<?xml version="1.0" encoding="UTF-8"?>

<window>

    <visible>[[Player.Seeking | Player.DisplayAfterSeek | [Player.Paused + !Player.Caching] | Player.Forwarding | Player.Rewinding | Player.ShowInfo | Window.IsActive(fullscreeninfo) | Window.IsActive(videoosd) | Window.IsActive(playerprocessinfo)] + Window.IsActive(fullscreenvideo)] | Window.IsActive(visualisation) | !IsEmpty(Player.SeekNumeric)</visible>
    <visible>!Window.IsActive(sliderdialog)</visible>

    <zorder>0</zorder>
    
    <controls>
    
        <control type="group">
            <bottom>0</bottom>
            <height>190</height>
            
            <!--seek label-->
            <control type="label" id="40000">
                <centerleft>50%</centerleft>
                <top>134</top>
                <width>50%</width>
                <height>60</height>
                <align>center</align>
                <aligny>center</aligny>
                <font>Reg.33</font>
                <label>$VAR[SeekLabel]</label>
            </control>
            
        </control>
        
    </controls>
    
</window>

I have literally stripped everything out to try and narrow it down – the only thing left is the paused label, yet this is what it looks like…

[Image: gu5LCaT.png]

Where are the labels at the top coming from?! They show up when DialogSeekbar, DialogFullScreenInfo and VideoOSD are visible, but I can literally remove everything from those three xmls and the labels are still there.

Am I missing another xml? This is driving me crazy!