Posts: 73
Joined: Jul 2011
Reputation:
0
I would like to ask, if its possible to disable the weather Icon to the right of the time bar on OSD. Couldnt find anything to do this. Because of it, the End Time overlaps with the Picture in the lower right corner.
Posts: 144
Joined: Oct 2008
Reputation:
0
It may be removed if you remove the global weather/time setting in the skin. I cant remember exactly where it is but that may remove it.
SoBBie
Posts: 144
Joined: Oct 2008
Reputation:
0
well I did a quick search on the SVN files and found it in DialogFullScreenInfo.xml. You will want to try to remove all references to weather.
I would make a backup just in case and then delete the following lines (line 288 to 306) from the file:
<control type="image">
<texture>$INFO[Window(Weather).Property(Current.ConditionIcon)]</texture>
<width>75</width>
<height>75</height>
<posx>860</posx>
<posy>60</posy>
<visible>VideoPlayer.Content(episodes)+ ![[Player.Paused + Player.Caching] + !Player.Seeking]</visible>
</control>
<control type="label">
<label>$LOCALIZE[143] [COLOR white]$INFO[Window(Weather).Property(Current.Temperature)]$INFO[System.TemperatureUnits][/COLOR]</label>
<posx>785</posx>
<posy>133</posy>
<width>225</width>
<height>20</height>
<font>Font_Neon_22</font>
<align>center</align>
<textcolor>mainblue</textcolor>
<visible>VideoPlayer.Content(episodes)+ ![[Player.Paused + Player.Caching] + !Player.Seeking]</visible>
</control>
That should give you what you want... but since it is a SVN when it is updated you may lose your change.