diff --git a/kweather/weather_icon.cpp b/kweather/weather_icon.cpp index 05461ee..e358833 100644 --- a/kweather/weather_icon.cpp +++ b/kweather/weather_icon.cpp @@ -240,6 +240,8 @@ WeatherIcon::WeatherIcon( int condition, bool night, unsigned int strength ) fallback << "weather-snow-scattered"; // xdg, kweather + fallback << "weather-snow"; // workaround for some themes + break; } case 2: @@ -266,6 +268,8 @@ WeatherIcon::WeatherIcon( int condition, bool night, unsigned int strength ) fallback << "weather-snow-scattered"; // xdg, kweather + fallback << "weather-snow"; // workaround for some themes + break; } @@ -292,6 +296,8 @@ WeatherIcon::WeatherIcon( int condition, bool night, unsigned int strength ) { fallback << "weather-snow-scattered"; // xdg, kweather + fallback << "weather-snow"; // workaround for some themes + break; } @@ -405,4 +411,4 @@ bool WeatherIcon::iconExists( TQString& icon, bool inTheme ) { return !( locate( "data", "kweather/" + icon + ".png" ).isNull() ); } -} \ No newline at end of file +}