[weather dataengine] noaa: fix unknown icon for Flurries

wilder-5.17
Friedrich W. H. Kossebau 7 years ago
parent f02759d028
commit 075629b96e
  1. 3
      dataengines/weather/ions/noaa/ion_noaa.cpp

@ -694,6 +694,9 @@ IonInterface::ConditionIcons NOAAIon::getConditionIcon(const QString& weather, b
weather.contains(QStringLiteral("showers"))) && weather.contains(QStringLiteral("snow"))) || weather.contains(QStringLiteral("wintry mix"))) {
result = IonInterface::RainSnow;
} else if (weather.contains(QStringLiteral("flurries"))) {
result = IonInterface::Flurries;
} else if (weather.contains(QStringLiteral("snow")) && weather.contains(QStringLiteral("light"))) {
result = IonInterface::LightSnow;

Loading…
Cancel
Save