Kodi Community Forum
Solved Hiding the on screen pause icon? - Printable Version

+- Kodi Community Forum (https://forum.kodi.tv)
+-- Forum: Support (https://forum.kodi.tv/forumdisplay.php?fid=33)
+--- Forum: Skins Support (https://forum.kodi.tv/forumdisplay.php?fid=67)
+---- Forum: Eminence (https://forum.kodi.tv/forumdisplay.php?fid=213)
+---- Thread: Solved Hiding the on screen pause icon? (/showthread.php?tid=230188)



Hiding the on screen pause icon? - hollyt9 - 2015-06-22

How do I hide the large on screen pause icon that appears when pausing video playback?

Thanks.


RE: Hiding the on screen pause icon? - josch - 2015-06-22

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


RE: Hiding the on screen pause icon? - hollyt9 - 2015-06-23

Thanks josch!