larger icons for current conditions and extended forecast

This commit is contained in:
Matt Walsh
2020-09-08 15:56:12 -05:00
parent 06666c4ef9
commit 0e5d831f4a
4 changed files with 85 additions and 71 deletions

View File

@@ -64,9 +64,7 @@ class ExtendedForecast extends WeatherDisplay {
// get the object to modify/populate
const fDay = forecast[destIndex];
// high temperature will always be last in the source array so it will overwrite the low values assigned below
// TODO: change to commented line when incons are matched up
// fDay.icon = icons.GetWeatherIconFromIconLink(period.icon);
fDay.icon = icons.getWeatherRegionalIconFromIconLink(period.icon);
fDay.icon = icons.getWeatherIconFromIconLink(period.icon);
fDay.text = this.shortenExtendedForecastText(period.shortForecast);
fDay.dayName = dates[destIndex];