Kodi Community Forum

Full Version: Hide Displayseekbar? [Pause OSD]
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Im looking for help editing this so the pause OSD disappears

Code:
<window>
    <defaultcontrol>-</defaultcontrol>
    <visible>Window.IsActive(fullscreenvideo)</visible>
    <controls>
        <!--clock-->
        <control type="group">
            <include>clock</include>
            <visible>Player.Paused</visible>
        </control>
        <control type="group">
            <include>transition_OSD</include>
            <!--media info-->
            <control type="group">
                <include>osd_Video</include>
            </control>
        </control>
    </controls>
</window>

I added this

Code:
<visible>Player.Paused + !System.IdleTime(5)</visible>

at the end which works but then the seekbar doesn't show up when skipping or when pressing info.
I added <visible>!Player.Paused</visible> instead which kind of does the job.