Advertisement
Guest User

Fix for reFocus BIG not displaying clearart on OSD

a guest
Feb 4th, 2013
223
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.26 KB | None | 0 0
  1. The diff below in 720p/DialogSeekBar.xml will fix two issues:
  2. - Clearart not displayed for TV shows using season folders on reAlaska OSD during pause
  3. - Clearart not displayed for TV shows using season folders on reFocus BIG OSD during pause
  4.  
  5. 356c356
  6. < <texture>$INFO[Player.FolderPath]../clearart.png</texture>
  7. ---
  8. > <texture>$INFO[Player.Art(tvshow.clearart)]</texture>
  9. 359c359
  10. < <visible>[VideoPlayer.Content(episodes)]</visible>
  11. ---
  12. > <visible>Skin.HasSetting(videoosd.realaska) + [VideoPlayer.Content(episodes)]</visible>
  13. 369c369
  14. < <visible>[VideoPlayer.Content(episodes)]</visible>
  15. ---
  16. > <visible>Skin.HasSetting(videoosd.realaska) + [VideoPlayer.Content(episodes)]</visible>
  17. 481a482,491
  18. > <control type="image" id="1">
  19. > <posx>10</posx>
  20. > <posy>555</posy>
  21. > <width>290</width>
  22. > <height>170</height>
  23. > <texture>$INFO[Player.Art(clearart)]</texture>
  24. > <aspectratio>keep</aspectratio>
  25. > <include>transition_OSD</include>
  26. > <visible>VideoPlayer.Content(movies) + SubString(Player.FolderPath,http)</visible>
  27. > </control>
  28. 729c739
  29. < <texture fallback="empty">$INFO[Player.FolderPath]../clearart.png</texture>
  30. ---
  31. > <texture fallback="empty">$INFO[Player.Art(tvshow.clearart)]</texture>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement