Kodi Community Forum

Full Version: Hiding the on screen pause icon?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
How do I hide the large on screen pause icon that appears when pausing video playback?

Thanks.
Hi hollyt9,

as it's pretty simple to achieve I've wrote you a quick how-to:

Hide big pause icon when pausing video playback:

1. Navigate to skin.eminence/1080i

2. Open the file Includes_Images.xml and go to:
Code:
<variable name="PlayerBigIcon">
        <value condition="Player.Rewinding">common/bigrw.png</value>
        <value condition="Player.Forwarding">common/bigff.png</value>
        <value condition="Player.Paused">common/bigpause.png</value>
</variable>

3. Just remove the line with the bigpause.png:
Code:
<variable name="PlayerBigIcon">
        <value condition="Player.Rewinding">common/bigrw.png</value>
        <value condition="Player.Forwarding">common/bigff.png</value>
</variable>


cheers,
josch
Thanks josch!