summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMavridis Philippe <mavridisf@gmail.com>2021-11-14 17:49:42 +0200
committerMavridis Philippe <mavridisf@gmail.com>2022-01-14 12:36:58 +0200
commita21cf7acf61e3afa00890138d7f8179f9c922b82 (patch)
treec06cb14756117178424a5e4230e4c62ddd7f006c
parentbee2b453da43cadc324821c4c6a42ee915a4661a (diff)
downloadtdetoys-a21cf7acf61e3afa00890138d7f8179f9c922b82.tar.gz
tdetoys-a21cf7acf61e3afa00890138d7f8179f9c922b82.zip
KWeather: Fixed fallback to default icons
Signed-off-by: Mavridis Philippe <mavridisf@gmail.com>
-rw-r--r--kweather/weatherservice.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/kweather/weatherservice.cpp b/kweather/weatherservice.cpp
index 110a196..c02ca3b 100644
--- a/kweather/weatherservice.cpp
+++ b/kweather/weatherservice.cpp
@@ -150,7 +150,7 @@ TQString WeatherService::currentIconString(const TQString &stationID)
TQString WeatherService::iconFileName(const TQString &stationID)
{
TQString _name = m_weatherLib->iconName(stationID);
- TQString icon = kapp->iconLoader()->iconPath(_name, TDEIcon::Desktop);
+ TQString icon = kapp->iconLoader()->iconPath(_name, TDEIcon::Desktop, true);
kdDebug(12006) << "icon: " << icon << endl;
if( icon.isNull() )
{