Advertisement
Guest User

Fix for reFocus BIG weather status bar on Home Menu

a guest
Feb 4th, 2013
217
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.12 KB | None | 0 0
  1. The diff below in 720p/Home.xml will fix two issues:
  2. - When weather item on home menu is highlighted, the current conditions displayed in the status bar are overlaid on top of the library status count, making it unreadable.
  3. - There are a few spurious "\95" strings in the current conditions, I removed them.
  4.  
  5. 635c635
  6. < <visible>![Library.HasContent(movies) + [Container(9000).HasFocus(3) | Container(9000).HasFocus(4)]] + ![Library.HasContent(tvshows) + [Container(9000).HasFocus(5) | Container(9000).HasFocus(6)]] + ![Library.HasContent(music) + [Container(9000).HasFocus(9) | Container(9000).HasFocus(10)]] + ![Container(9000).HasFocus(17) | Container(9000).HasFocus(21) | Container(9000).HasFocus(22)] + ![[Container(9000).HasFocus(7) | Container(9000).HasFocus(8)] + !IsEmpty(PVR.NextRecordingDateTime)]</visible>
  7. ---
  8. > <visible>![Library.HasContent(movies) + [Container(9000).HasFocus(3) | Container(9000).HasFocus(4)] | Library.HasContent(tvshows) + [Container(9000).HasFocus(5) | Container(9000).HasFocus(6)] | Library.HasContent(music) + [Container(9000).HasFocus(9) | Container(9000).HasFocus(10) | Container(9000).HasFocus(17) | Container(9000).HasFocus(21) | Container(9000).HasFocus(22)]] + ![[Container(9000).HasFocus(7) | Container(9000).HasFocus(8)] + !IsEmpty(PVR.NextRecordingDateTime)]</visible>
  9. 658c658
  10. < <label>$LOCALIZE[31965]: [COLOR=Color1]$INFO[Weather.Conditions], $INFO[Weather.Temperature][/COLOR] $LOCALIZE[402]: [COLOR=Color1]$INFO[Window(Weather).Property(Current.FeelsLike)]$INFO[System.TemperatureUnits][/COLOR] $LOCALIZE[406]: [COLOR=Color1]$INFO[Window(Weather).Property(Current.Humidity)][/COLOR] $LOCALIZE[404]: [COLOR=Color1]$INFO[Window(Weather).Property(Current.Wind)][/COLOR]</label>
  11. ---
  12. > <label>$LOCALIZE[31965]: [COLOR=Color1]$INFO[Weather.Conditions], $INFO[Weather.Temperature][/COLOR] \95 $LOCALIZE[402]: [COLOR=Color1]$INFO[Window(Weather).Property(Current.FeelsLike)]$INFO[System.TemperatureUnits][/COLOR] \95 $LOCALIZE[406]: [COLOR=Color1]$INFO[Window(Weather).Property(Current.Humidity)][/COLOR] \95 $LOCALIZE[404]: [COLOR=Color1]$INFO[Window(Weather).Property(Current.Wind)][/COLOR]</label>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement