Advertisement
Guest User

Fix for reFocus BIG weather home menu current conditions

a guest
Feb 4th, 2013
189
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.83 KB | None | 0 0
  1. The diff below in 720p/HomeMenu.xml will change the behavior of the weather item in the home menu.
  2.  
  3. Currently, if the user highlights the "Settings" item on the home screen, it will change the item "weather" to display the current condition instead, e.g. "27° in wilmington". However, this is inconsistent, I'm not sure if it's intentional, since highlighting other items on the home menu such as movies / videos / tvshows just displays the weather item as "weather". I believe the weather item should always display the current conditions, unless it is highlighted, then it should display as "weather". This change does that.
  4.  
  5. 139c139
  6. < <visible>!Skin.HasSetting(homemenu.weather) + Weather.IsFetched + [[Control.HasFocus(8000) | Control.HasFocus(8001) | Control.HasFocus(8002) | Control.HasFocus(8005) | Control.HasFocus(8006) | Control.HasFocus(8007) | Control.HasFocus(8008) | Control.HasFocus(8009) | Control.HasFocus(80081) | Control.HasFocus(80091)] | [Container(9000).HasFocus(17)]] + Skin.HasSetting(home.widgets)]]</visible>
  7. ---
  8. > <visible>!Skin.HasSetting(homemenu.weather) + Weather.IsFetched + [[Control.HasFocus(8000) | Control.HasFocus(8001) | Control.HasFocus(8002) | Control.HasFocus(8005) | Control.HasFocus(8006) | Control.HasFocus(8007) | Control.HasFocus(8008) | Control.HasFocus(8009) | Control.HasFocus(80081) | Control.HasFocus(80091)] | [[Container(9000).HasFocus(5) | Container(9000).HasFocus(6) | Container(9000).HasFocus(3) | Container(9000).HasFocus(1) | Container(9000).HasFocus(4) | Container(9000).HasFocus(9) | Container(9000).HasFocus(10) | Container(9000).HasFocus(13) | Container(9000).HasFocus(14) | Container(9000).HasFocus(17)]] + Skin.HasSetting(home.widgets)]]</visible>
  9. 146c146
  10. < <visible>!Skin.HasSetting(homemenu.weather) + Weather.IsFetched + [[![Control.HasFocus(8000) | Control.HasFocus(8001) | Control.HasFocus(8002) | Control.HasFocus(8005) | Control.HasFocus(8006) | Control.HasFocus(8007) | Control.HasFocus(8008) | Control.HasFocus(8009) | Control.HasFocus(80081) | Control.HasFocus(80091)] + [!Container(9000).HasFocus(17) + Skin.HasSetting(home.widgets)]] | !Skin.HasSetting(home.widgets)]</visible>
  11. ---
  12. > <visible>!Skin.HasSetting(homemenu.weather) + Weather.IsFetched + [[![Control.HasFocus(8000) | Control.HasFocus(8001) | Control.HasFocus(8002) | Control.HasFocus(8005) | Control.HasFocus(8006) | Control.HasFocus(8007) | Control.HasFocus(8008) | Control.HasFocus(8009) | Control.HasFocus(80081) | Control.HasFocus(80091)] + [![Container(9000).HasFocus(5) | Container(9000).HasFocus(6) | Container(9000).HasFocus(3) | Container(9000).HasFocus(1) | Container(9000).HasFocus(4) | Container(9000).HasFocus(9) | Container(9000).HasFocus(10) | Container(9000).HasFocus(13) | Container(9000).HasFocus(14) | Container(9000).HasFocus(17)] + Skin.HasSetting(home.widgets)]] | !Skin.HasSetting(home.widgets)]</visible>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement